blob: 66e09ccb99673dac278c16b7f857e85aefd7c284 [file] [log] [blame]
Georg Brandl7155a092008-01-16 20:27:56 +00001{% extends "layout.html" %}
2{% set title = 'Download' %}
Georg Brandle82110f2010-03-13 13:39:46 +00003{% if daily is defined %}
4 {% set dlbase = pathto('archives', 1) %}
5{% else %}
Georg Brandl42bf4862014-10-29 08:36:15 +01006 {% set dlbase = 'https://docs.python.org/ftp/python/doc/' + release %}
Georg Brandle82110f2010-03-13 13:39:46 +00007{% endif %}
Georg Brandl7155a092008-01-16 20:27:56 +00008
Georg Brandle82110f2010-03-13 13:39:46 +00009{% block body %}
Georg Brandl7ff19fa2008-09-28 20:01:36 +000010<h1>Download Python {{ release }} Documentation</h1>
Georg Brandl7155a092008-01-16 20:27:56 +000011
Georg Brandl7ff19fa2008-09-28 20:01:36 +000012{% if last_updated %}<p><b>Last updated on: {{ last_updated }}.</b></p>{% endif %}
13
Georg Brandl7155a092008-01-16 20:27:56 +000014<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
Benjamin Petersond0a05bf2008-11-17 21:39:05 +000016in the table are the size of the download files in megabytes.</p>
Georg Brandl7155a092008-01-16 20:27:56 +000017
Georg Brandl29fdcad2008-09-21 22:31:59 +000018<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>
Benjamin Peterson1e551b42008-12-26 23:26:30 +000021 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.zip">Download</a> (ca. 8 MB)</td>
22 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.tar.bz2">Download</a> (ca. 8 MB)</td>
Georg Brandl29fdcad2008-09-21 22:31:59 +000023 </tr>
24 <tr><td>PDF (A4 paper size)</td>
Benjamin Peterson1e551b42008-12-26 23:26:30 +000025 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.zip">Download</a> (ca. 8 MB)</td>
26 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2">Download</a> (ca. 8 MB)</td>
Georg Brandl29fdcad2008-09-21 22:31:59 +000027 </tr>
28 <tr><td>HTML</td>
Benjamin Peterson1e551b42008-12-26 23:26:30 +000029 <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.zip">Download</a> (ca. 6 MB)</td>
30 <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2">Download</a> (ca. 4 MB)</td>
Georg Brandl29fdcad2008-09-21 22:31:59 +000031 </tr>
32 <tr><td>Plain Text</td>
Benjamin Petersona96a94a2009-02-06 01:47:31 +000033 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.zip">Download</a> (ca. 2 MB)</td>
Benjamin Peterson1e551b42008-12-26 23:26:30 +000034 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">Download</a> (ca. 1.5 MB)</td>
Georg Brandl29fdcad2008-09-21 22:31:59 +000035 </tr>
36</table>
Georg Brandl7155a092008-01-16 20:27:56 +000037
Georg Brandl29fdcad2008-09-21 22:31:59 +000038<p>These archives contain all the content in the documentation.</p>
Georg Brandl7155a092008-01-16 20:27:56 +000039
Georg Brandlf590e042012-03-14 08:18:47 +010040<p>HTML Help (<tt>.chm</tt>) files are made available in the "Windows" section
Georg Brandl42bf4862014-10-29 08:36:15 +010041on the <a href="https://www.python.org/download/releases/{{ release[:5] }}/">Python
Georg Brandlf590e042012-03-14 08:18:47 +010042download page</a>.</p>
43
44
Georg Brandl7155a092008-01-16 20:27:56 +000045<h2>Unpacking</h2>
46
47<p>Unix users should download the .tar.bz2 archives; these are bzipped tar
48archives and can be handled in the usual way using tar and the bzip2
49program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip program can be
50used to handle the ZIP archives if desired. The .tar.bz2 archives provide the
51best compression and fastest download times.</p>
52
53<p>Windows users can use the ZIP archives since those are customary on that
Georg Brandl29fdcad2008-09-21 22:31:59 +000054platform. These are created on Unix using the InfoZIP zip program.</p>
Georg Brandl7155a092008-01-16 20:27:56 +000055
56
57<h2>Problems</h2>
58
Georg Brandl7155a092008-01-16 20:27:56 +000059<p>If you have comments or suggestions for the Python documentation, please send
Benjamin Petersond0a05bf2008-11-17 21:39:05 +000060email to <a href="mailto:docs@python.org">docs@python.org</a>.</p>
Georg Brandl7155a092008-01-16 20:27:56 +000061{% endblock %}