blob: 01ce8a063f1bd0aaf9f33338602fd6db19f3fac0 [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
6<h1>Download Python {{ release }} Documentation
7 {%- if last_updated %} (last updated on {{ last_updated }}){% endif %}</h1>
8
Georg Brandlbaf59e02008-09-28 08:34:31 +00009{% if 'a' in release or 'b' in release or 'c' in release %}
10<p>We don't package the documentation for development releases for download.
11 Downloads will be available for the final release.</p>
12
13{% else %}
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
16in the table are the size of the download files in Kilobytes.</p>
17
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>
21 <td><a href="{{ dlbase }}/python-docs-pdf-letter.zip">Download</a> (ca. 8 MB)</td>
22 <td><a href="{{ dlbase }}/python-docs-pdf-letter.tar.bz2">Download</a> (ca. 8 MB)</td>
23 </tr>
24 <tr><td>PDF (A4 paper size)</td>
25 <td><a href="{{ dlbase }}/python-docs-pdf-a4.zip">Download</a> (ca. 8 MB)</td>
26 <td><a href="{{ dlbase }}/python-docs-pdf-a4.tar.bz2">Download</a> (ca. 8 MB)</td>
27 </tr>
28 <tr><td>HTML</td>
29 <td><a href="{{ dlbase }}/python-docs-html.zip">Download</a> (ca. 6 MB)</td>
30 <td><a href="{{ dlbase }}/python-docs-html.tar.bz2">Download</a> (ca. 4 MB)</td>
31 </tr>
32 <tr><td>Plain Text</td>
33 <td><a href="{{ dlbase }}/python-docs-pdf-text.zip">Download</a> (ca. 2 MB)</td>
34 <td><a href="{{ dlbase }}/python-docs-pdf-text.tar.bz2">Download</a> (ca. 1.5 MB)</td>
35 </tr>
36</table>
Georg Brandl7155a092008-01-16 20:27:56 +000037
38
Georg Brandl29fdcad2008-09-21 22:31:59 +000039<p>These archives contain all the content in the documentation.</p>
Georg Brandl7155a092008-01-16 20:27:56 +000040
41<h2>Unpacking</h2>
42
43<p>Unix users should download the .tar.bz2 archives; these are bzipped tar
44archives and can be handled in the usual way using tar and the bzip2
45program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip program can be
46used to handle the ZIP archives if desired. The .tar.bz2 archives provide the
47best compression and fastest download times.</p>
48
49<p>Windows users can use the ZIP archives since those are customary on that
Georg Brandl29fdcad2008-09-21 22:31:59 +000050platform. These are created on Unix using the InfoZIP zip program.</p>
Georg Brandl7155a092008-01-16 20:27:56 +000051
52
53<h2>Problems</h2>
54
Georg Brandl7155a092008-01-16 20:27:56 +000055<p>If you have comments or suggestions for the Python documentation, please send
56email to <a href="docs@python.org">docs@python.org</a>.</p>
Georg Brandlbaf59e02008-09-28 08:34:31 +000057{% endif %}
Georg Brandl7155a092008-01-16 20:27:56 +000058
Georg Brandl7155a092008-01-16 20:27:56 +000059{% endblock %}