mirror of
https://github.com/kennethreitz/dive-into-python3.git
synced 2026-06-05 23:10:17 +00:00
71 lines
4.6 KiB
HTML
71 lines
4.6 KiB
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<title>Where to go from here - Dive into Python 3</title>
|
|
<!--[if IE]><script src=j/html5.js></script><![endif]-->
|
|
<link rel=stylesheet href=dip3.css>
|
|
<style>
|
|
body{counter-reset:h1 20}
|
|
</style>
|
|
<link rel=stylesheet media='only screen and (max-device-width: 480px)' href=mobile.css>
|
|
<link rel=stylesheet media=print href=print.css>
|
|
<meta name=viewport content='initial-scale=1.0'>
|
|
</head>
|
|
<form action=http://www.google.com/cse><div><input type=hidden name=cx value=014021643941856155761:l5eihuescdw><input type=hidden name=ie value=UTF-8> <input name=q size=25> <input type=submit name=sa value=Search></div></form>
|
|
<p>You are here: <a href=index.html>Home</a> <span class=u>‣</span> <a href=table-of-contents.html#where-to-go-from-here>Dive Into Python 3</a> <span class=u>‣</span>
|
|
<p id=level>Difficulty level: <span title=pro>♦♦♦♦♦</span>
|
|
<h1>Where To Go From Here</h1>
|
|
<blockquote class=q>
|
|
<p><span class=u>❝</span> FIXME <span class=u>❞</span><br>— FIXME
|
|
</blockquote>
|
|
<p id=toc>
|
|
<h2 id=things-to-read>Things to Read</h2>
|
|
<p class=f>There are a number of topics that I decided not to cover in this book, for which free tutorials exist.
|
|
|
|
<p>Decorators:
|
|
|
|
<ul>
|
|
<li><a href=http://programmingbits.pythonblogs.com/27_programmingbits/archive/50_function_decorators.html>Function Decorators</a>
|
|
<li><a href=http://programmingbits.pythonblogs.com/27_programmingbits/archive/51_more_on_function_decorators.html>More on Function Decorators</a>
|
|
<li><a href=http://www.ibm.com/developerworks/linux/library/l-cpdecor.html>Charming Python: Decorators make magic easy</a>
|
|
<li><a href=http://docs.python.org/reference/compound_stmts.html#function>Function Definitions</a> in the official Python documentation
|
|
</ul>
|
|
|
|
<p>Descriptors:
|
|
|
|
<ul>
|
|
<li><a href=http://users.rcn.com/python/download/Descriptor.htm>How-To Guide For Descriptors</a>
|
|
<li><a href=http://www.ibm.com/developerworks/linux/library/l-python-elegance-2.html>Charming Python: Python elegance and warts, Part 2</a>
|
|
<li><a href='http://www.informit.com/articles/printerfriendly.aspx?p=1309289'>Python Descriptors</a>
|
|
<li><a href=http://docs.python.org/3.0/reference/datamodel.html#invoking-descriptors>Invoking Descriptors</a> in the official Python documentation
|
|
</ul>
|
|
|
|
<p>Metaclasses:
|
|
|
|
<ul>
|
|
<li><a href=http://www.ibm.com/developerworks/linux/library/l-pymeta.html>Metaclass programming in Python</a>
|
|
<li><a href=http://www.ibm.com/developerworks/linux/library/l-pymeta2/>Metaclass programming in Python, Part 2</a>
|
|
<li><a href=http://www.ibm.com/developerworks/linux/library/l-pymeta3.html>Metaclass programming in Python, Part 3</a>
|
|
</ul>
|
|
|
|
<p>In addition, Doug Hellman’s <a href=http://www.doughellmann.com/PyMOTW/contents.html>Python Module of the Week</a> is a fantastic guide to many of the modules in the Python standard library.
|
|
|
|
<h2 id=code>Where To Look For Python 3-Compatible Code</h2>
|
|
|
|
<p>As Python 3 is relatively new, there is a dearth of compatible libraries. Here are some of the places to look for code that works with Python 3.
|
|
|
|
<ul>
|
|
<li><a href='http://pypi.python.org/pypi?:action=browse&c=533&show=all'>Python Package Index: list of Python 3 packages</a>
|
|
<li><a href='http://code.activestate.com/recipes/langs/python/tags/python3/'>Python Cookbook: list of recipes tagged “python3”</a>
|
|
<li><a href='http://code.google.com/hosting/search?q=label:python3'>Google Project Hosting: list of projects tagged “python3”</a>
|
|
<li><a href='http://sourceforge.net/search/?words=%22python+3%22'>SourceForge: list of projects matching “Python 3”</a>
|
|
<li><a href='http://github.com/search?type=Repositories&language=python&q=python3'>GitHub: list of projects matching “python3”</a> (also, <a href='http://github.com/search?type=Repositories&language=python&q=python+3'>list of projects matching “python 3”</a>)
|
|
<li><a href='http://bitbucket.org/repo/all/?name=python3'>BitBucket: list of projects matching “python3”</a> (and <a href='http://bitbucket.org/repo/all/?name=python+3'>those matching “python 3”</a>)
|
|
</ul>
|
|
|
|
<p class=v><a href=case-study-porting-chardet-to-python-3.html rel=prev title='back to “Case Study: Porting chardet to Python 3”'><span class=u>☜</span></a> <a href=porting-code-to-python-3-with-2to3.html rel=next title='onward to “Porting Code to Python 3 with 2to3”'><span class=u>☞</span></a>
|
|
|
|
<p class=c>© 2001–9 <a href=about.html>Mark Pilgrim</a>
|
|
<script src=j/jquery.js></script>
|
|
<script src=j/dip3.js></script>
|