1{% extends "layout.html" %} 2{% set title = 'Download' %} 3{% if daily is defined %} 4 {% set dlbase = pathto('archives', 1) %} 5{% else %} 6 {% set dlbase = 'https://docs.python.org/ftp/python/doc/' + release %} 7{% endif %} 8 9{% block body %} 10<h1>Download Python {{ release }} Documentation</h1> 11 12{% if last_updated %}<p><b>Last updated on: {{ last_updated }}.</b></p>{% endif %} 13 14<p>To download an archive containing all the documents for this version of 15Python in one of various formats, follow one of links in this table. The numbers 16in the table are the size of the download files in megabytes.</p> 17 18<table class="docutils"> 19 <tr><th>Format</th><th>Packed as .zip</th><th>Packed as .tar.bz2</th></tr> 20 <tr><td>PDF (US-Letter paper size)</td> 21 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.zip">Download</a> (ca. 13 MiB)</td> 22 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.tar.bz2">Download</a> (ca. 13 MiB)</td> 23 </tr> 24 <tr><td>PDF (A4 paper size)</td> 25 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.zip">Download</a> (ca. 13 MiB)</td> 26 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2">Download</a> (ca. 13 MiB)</td> 27 </tr> 28 <tr><td>HTML</td> 29 <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.zip">Download</a> (ca. 9 MiB)</td> 30 <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2">Download</a> (ca. 6 MiB)</td> 31 </tr> 32 <tr><td>Plain Text</td> 33 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.zip">Download</a> (ca. 3 MiB)</td> 34 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">Download</a> (ca. 2 MiB)</td> 35 </tr> 36 <tr><td>EPUB</td> 37 <td><a href="{{ dlbase }}/python-{{ release }}-docs.epub">Download</a> (ca. 5 MiB)</td> 38 <td></td> 39 </tr> 40</table> 41 42<p>These archives contain all the content in the documentation.</p> 43 44<p>HTML Help (<tt>.chm</tt>) files are made available in the "Windows" section 45on the <a href="https://www.python.org/downloads/release/python-{{ release.replace('.', '') }}/">Python 46download page</a>.</p> 47 48 49<h2>Unpacking</h2> 50 51<p>Unix users should download the .tar.bz2 archives; these are bzipped tar 52archives and can be handled in the usual way using tar and the bzip2 53program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip program can be 54used to handle the ZIP archives if desired. The .tar.bz2 archives provide the 55best compression and fastest download times.</p> 56 57<p>Windows users can use the ZIP archives since those are customary on that 58platform. These are created on Unix using the InfoZIP zip program.</p> 59 60 61<h2>Problems</h2> 62 63<p>If you have comments or suggestions for the Python documentation, please send 64email to <a href="mailto:docs@python.org">docs@python.org</a>.</p> 65{% endblock %} 66