blob: 22a03a0d2fb503c27b8a8920ebb6aca88fc3ad0b [file] [log] [blame]
Georg Brandl7155a092008-01-16 20:27:56 +00001{% extends "layout.html" %}
2{% set title = 'Download' %}
Georg Brandl29fdcad2008-09-21 22:31:59 +00003{% set dlbase = 'http://docs.python.org/ftp/python/doc/' + release %}
Georg Brandl7155a092008-01-16 20:27:56 +00004{% block body %}
5
Georg Brandl7ff19fa2008-09-28 20:01:36 +00006<h1>Download Python {{ release }} Documentation</h1>
Georg Brandl7155a092008-01-16 20:27:56 +00007
Georg Brandlbaf59e02008-09-28 08:34:31 +00008{% if 'a' in release or 'b' in release or 'c' in release %}
9<p>We don't package the documentation for development releases for download.
10 Downloads will be available for the final release.</p>
11
12{% else %}
Georg Brandl7ff19fa2008-09-28 20:01:36 +000013{% if last_updated %}<p><b>Last updated on: {{ last_updated }}.</b></p>{% endif %}
14
Georg Brandl7155a092008-01-16 20:27:56 +000015<p>To download an archive containing all the documents for this version of
16Python in one of various formats, follow one of links in this table. The numbers
Benjamin Petersond0a05bf2008-11-17 21:39:05 +000017in the table are the size of the download files in megabytes.</p>
Georg Brandl7155a092008-01-16 20:27:56 +000018
Georg Brandl29fdcad2008-09-21 22:31:59 +000019<table class="docutils">
20 <tr><th>Format</th><th>Packed as .zip</th><th>Packed as .tar.bz2</th></tr>
21 <tr><td>PDF (US-Letter paper size)</td>
Benjamin Peterson1e551b42008-12-26 23:26:30 +000022 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.zip">Download</a> (ca. 8 MB)</td>
23 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.tar.bz2">Download</a> (ca. 8 MB)</td>
Georg Brandl29fdcad2008-09-21 22:31:59 +000024 </tr>
25 <tr><td>PDF (A4 paper size)</td>
Benjamin Peterson1e551b42008-12-26 23:26:30 +000026 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.zip">Download</a> (ca. 8 MB)</td>
27 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2">Download</a> (ca. 8 MB)</td>
Georg Brandl29fdcad2008-09-21 22:31:59 +000028 </tr>
29 <tr><td>HTML</td>
Benjamin Peterson1e551b42008-12-26 23:26:30 +000030 <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.zip">Download</a> (ca. 6 MB)</td>
31 <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2">Download</a> (ca. 4 MB)</td>
Georg Brandl29fdcad2008-09-21 22:31:59 +000032 </tr>
33 <tr><td>Plain Text</td>
Benjamin Petersona96a94a2009-02-06 01:47:31 +000034 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.zip">Download</a> (ca. 2 MB)</td>
Benjamin Peterson1e551b42008-12-26 23:26:30 +000035 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">Download</a> (ca. 1.5 MB)</td>
Georg Brandl29fdcad2008-09-21 22:31:59 +000036 </tr>
37</table>
Georg Brandl7155a092008-01-16 20:27:56 +000038
39
Georg Brandl29fdcad2008-09-21 22:31:59 +000040<p>These archives contain all the content in the documentation.</p>
Georg Brandl7155a092008-01-16 20:27:56 +000041
42<h2>Unpacking</h2>
43
44<p>Unix users should download the .tar.bz2 archives; these are bzipped tar
45archives and can be handled in the usual way using tar and the bzip2
46program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip program can be
47used to handle the ZIP archives if desired. The .tar.bz2 archives provide the
48best compression and fastest download times.</p>
49
50<p>Windows users can use the ZIP archives since those are customary on that
Georg Brandl29fdcad2008-09-21 22:31:59 +000051platform. These are created on Unix using the InfoZIP zip program.</p>
Georg Brandl7155a092008-01-16 20:27:56 +000052
53
54<h2>Problems</h2>
55
Georg Brandl7155a092008-01-16 20:27:56 +000056<p>If you have comments or suggestions for the Python documentation, please send
Benjamin Petersond0a05bf2008-11-17 21:39:05 +000057email to <a href="mailto:docs@python.org">docs@python.org</a>.</p>
Georg Brandlbaf59e02008-09-28 08:34:31 +000058{% endif %}
Georg Brandl7155a092008-01-16 20:27:56 +000059
Georg Brandl7155a092008-01-16 20:27:56 +000060{% endblock %}