Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 1 | {% extends "layout.html" %} |
| 2 | {% set title = 'Download' %} |
Georg Brandl | 29fdcad | 2008-09-21 22:31:59 +0000 | [diff] [blame] | 3 | {% set dlbase = 'http://docs.python.org/ftp/python/doc/' + release %} |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 4 | {% block body %} |
| 5 | |
| 6 | <h1>Download Python {{ release }} Documentation |
| 7 | {%- if last_updated %} (last updated on {{ last_updated }}){% endif %}</h1> |
| 8 | |
| 9 | <p>To download an archive containing all the documents for this version of |
| 10 | Python in one of various formats, follow one of links in this table. The numbers |
| 11 | in the table are the size of the download files in Kilobytes.</p> |
| 12 | |
Georg Brandl | 29fdcad | 2008-09-21 22:31:59 +0000 | [diff] [blame] | 13 | <table class="docutils"> |
| 14 | <tr><th>Format</th><th>Packed as .zip</th><th>Packed as .tar.bz2</th></tr> |
| 15 | <tr><td>PDF (US-Letter paper size)</td> |
| 16 | <td><a href="{{ dlbase }}/python-docs-pdf-letter.zip">Download</a> (ca. 8 MB)</td> |
| 17 | <td><a href="{{ dlbase }}/python-docs-pdf-letter.tar.bz2">Download</a> (ca. 8 MB)</td> |
| 18 | </tr> |
| 19 | <tr><td>PDF (A4 paper size)</td> |
| 20 | <td><a href="{{ dlbase }}/python-docs-pdf-a4.zip">Download</a> (ca. 8 MB)</td> |
| 21 | <td><a href="{{ dlbase }}/python-docs-pdf-a4.tar.bz2">Download</a> (ca. 8 MB)</td> |
| 22 | </tr> |
| 23 | <tr><td>HTML</td> |
| 24 | <td><a href="{{ dlbase }}/python-docs-html.zip">Download</a> (ca. 6 MB)</td> |
| 25 | <td><a href="{{ dlbase }}/python-docs-html.tar.bz2">Download</a> (ca. 4 MB)</td> |
| 26 | </tr> |
| 27 | <tr><td>Plain Text</td> |
| 28 | <td><a href="{{ dlbase }}/python-docs-pdf-text.zip">Download</a> (ca. 2 MB)</td> |
| 29 | <td><a href="{{ dlbase }}/python-docs-pdf-text.tar.bz2">Download</a> (ca. 1.5 MB)</td> |
| 30 | </tr> |
| 31 | </table> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 32 | |
| 33 | |
Georg Brandl | 29fdcad | 2008-09-21 22:31:59 +0000 | [diff] [blame] | 34 | <p>These archives contain all the content in the documentation.</p> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 35 | |
| 36 | <h2>Unpacking</h2> |
| 37 | |
| 38 | <p>Unix users should download the .tar.bz2 archives; these are bzipped tar |
| 39 | archives and can be handled in the usual way using tar and the bzip2 |
| 40 | program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip program can be |
| 41 | used to handle the ZIP archives if desired. The .tar.bz2 archives provide the |
| 42 | best compression and fastest download times.</p> |
| 43 | |
| 44 | <p>Windows users can use the ZIP archives since those are customary on that |
Georg Brandl | 29fdcad | 2008-09-21 22:31:59 +0000 | [diff] [blame] | 45 | platform. These are created on Unix using the InfoZIP zip program.</p> |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 46 | |
| 47 | |
| 48 | <h2>Problems</h2> |
| 49 | |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 50 | <p>If you have comments or suggestions for the Python documentation, please send |
| 51 | email to <a href="docs@python.org">docs@python.org</a>.</p> |
| 52 | |
Georg Brandl | 7155a09 | 2008-01-16 20:27:56 +0000 | [diff] [blame] | 53 | {% endblock %} |