Skip to content

Commit

Permalink
restructure resources area
Browse files Browse the repository at this point in the history
  • Loading branch information
jnoller committed Oct 7, 2011
1 parent f012b9a commit eaeb3a2
Showing 1 changed file with 59 additions and 33 deletions.
92 changes: 59 additions & 33 deletions site/_templates/resources.mako
Original file line number Diff line number Diff line change
@@ -1,39 +1,65 @@
<h2 class="caps"><span>Resources</span></h2>

<p>There is a wealth of information out there on Porting to Python 3. There
is an entire mailing list
(<a href="http://mail.python.org/mailman/listinfo/python-porting">python-porting</a>)
dedicated to helping people port things to Python 3 - developers experienced
in porting should join up, and there is already a good team there to help support
you.</p>

<p>Guides, cheat sheets and tutorials:</p>
<ul>
<li><a href="http://www.dabeaz.com/python3io/">David Beazley: Mastering Python 3 I/O</a></li>
<li><a href="http://docs.pythonsprints.com/python3_porting/py-porting.html">Python 3 Porting Guide</a></li>
<li><a href="http://docs.python.org/dev/howto/pyporting.html">Porting Python 2 Code to Python 3 (docs.python.org)</a></li>
<li><a href="http://ptgmedia.pearsoncmg.com/imprint_downloads/informit/promotions/python/python2python3.pdf">Mark Summerfield's "Moving from Python 2 to Python 3"</a></li>
<li><a href="http://docs.python.org/py3k/howto/cporting.html">Porting C Extension Modules to Python 3</a></li>
<li><a href="http://docs.python.org/py3k/howto/pyporting.html">Porting Python code to 3</a></li>
<li><a href="http://wiki.python.org/moin/Python2orPython3">Python2orPython2 also contains a lot of great resources</a></li>
</ul>
<div class="row">
<p>There is a wealth of information out there on Porting to, and about
Python 3. There is an entire mailing list (<a href="http://mail.python.org/mailman/listinfo/python-porting">python-porting</a>)
dedicated to helping people port things to Python 3 - developers
experienced in porting should join up, and there is already a good
team there to help support you.</p>
<div class="span12">
<div class="row">
<div class="span6">
<h3>Books</h3>
<ul>
<li><a href="http://python3porting.com/">Porting to Python 3: An in-depth guide</a></li>
<li><a href="http://getpython3.com/diveintopython3/">Dive into Python 3</a></li>

<p>Books:</p>
<ul>
<li><a href="http://diveintopython3.org/">Dive into Python 3</a></li>
</ul>
<p>Blog posts and other links from the community:</p>
<ul>
<li><a href="http://www.protocolostomy.com/2011/02/25/lessons-learned-porting-dateutil-to-python-3/">Lessons Learned Porting Dateutil to Python 3</a></li>
<li><a href="http://techspot.zzzeek.org/2011/01/24/zzzeek-s-guide-to-python-3-porting/">zzzeek's Guide to Python 3 Porting</a></li>
<li><a href="http://peadrop.com/blog/2009/04/05/porting-your-code-to-python-3/">Alexandre Vassalotti: Porting your code to Python 3</a></li>
<li><a href="http://www.voidspace.org.uk/python/articles/porting-mock-to-python-3.shtml">Michael Foord: Porting Mock to Python 3</a></li>
<li><a href="http://groups.google.com/group/django-developers/browse_thread/thread/abede3685ad0302">Jannis Leidel: Python 3 and You</a> </li>
</ul>
</ul>
</div>
<div class="span6">
<h3>Python 3 Overviews</h3>
<ul>
<li><a href="http://docs.python.org/release/3.0.1/whatsnew/3.0.html">What's New in Python 3</a></li>
<li><a href="http://www.linuxjournal.com/content/python-python-python-aka-python-3">Python Python Python (aka Python 3)</a></li>

<p>Miscellaneous:</p>
<ul>
<li><a href="http://jacobian.org/writing/why-im-excited-about-python-3/">Jacob Kaplan-Moss: Why I'm Excited About Python 3</a></li>
<li><a href="http://sayspy.blogspot.com/2011/03/secret-site-goes-live-python-3-support.html">Brett Cannon: Secret Site Goes Live - Python 3 support</a></li>
</ul>
</ul>
</div>
<div class="span6">
<h3>Guides, cheat sheets and tutorials:</h3>
<ul>
<li><a href="http://www.dabeaz.com/python3io/">David Beazley: Mastering Python 3 I/O</a></li>
<li><a href="http://docs.pythonsprints.com/python3_porting/py-porting.html">Python 3 Porting Guide</a></li>
<li><a href="http://docs.python.org/dev/howto/pyporting.html">Porting Python 2 Code to Python 3 (docs.python.org)</a></li>
<li><a
href="http://ptgmedia.pearsoncmg.com/imprint_downloads/informit/promotions/python/python2python3.pdf">Moving from Python 2 to Python 3 (pdf)</a></li>
<li><a href="http://docs.python.org/py3k/howto/cporting.html">Porting C Extension Modules to Python 3</a></li>
<li><a href="http://docs.python.org/py3k/howto/pyporting.html">Porting Python code to 3</a></li>
<li><a href="http://wiki.python.org/moin/Python2orPython3">Python2orPython2 also contains a lot of great resources</a></li>
</ul>
</div>
<div class="span6">
<h3>Posts &amp; links from the community:</h3>
<ul>
<li><a href="http://lucumr.pocoo.org/2010/2/11/porting-to-python-3-a-guide/">Porting to Python 3 — A Guide</li>
<li><a href="http://www.protocolostomy.com/2011/02/25/lessons-learned-porting-dateutil-to-python-3/">Lessons Learned Porting Dateutil to Python 3</a></li>
<li><a href="http://techspot.zzzeek.org/2011/01/24/zzzeek-s-guide-to-python-3-porting/">zzzeek's Guide to Python 3 Porting</a></li>
<li><a href="http://peadrop.com/blog/2009/04/05/porting-your-code-to-python-3/">Alexandre Vassalotti: Porting your code to Python 3</a></li>
<li><a href="http://www.voidspace.org.uk/python/articles/porting-mock-to-python-3.shtml">Michael Foord: Porting Mock to Python 3</a></li>
<li><a href="http://groups.google.com/group/django-developers/browse_thread/thread/abede3685ad0302">Jannis Leidel: Python 3 and You</a></li>
</ul>
</div>
<div class="span6">
<h3>Python 3 Porting Trackers</h3>
<ul>
<li><a href="http://py3ksupport.appspot.com/">Python 3 Support on PyPI</a></li>
<li><a href="http://onpython3yet.com/">On Python 3 Yet?</a></li>
<li><span class="label important"> FUD Warning</span><a href="http://python3wos.appspot.com/">Python 3 Wall of Shame</a></li>
</ul>
</div>
<div class="span6">
</div>
</div>
</div>
</div>

0 comments on commit eaeb3a2

Please sign in to comment.