blob: 4fca13882a5fdb47b49db47d8262e9a33e16eb0a [file] [log] [blame]
Christian Heimes679db4a2008-01-18 09:56:22 +00001{% extends "layout.html" %}
2{% set title = 'Download' %}
Georg Brandl49f47182010-03-13 13:42:16 +00003{% if daily is defined %}
4 {% set dlbase = pathto('archives', 1) %}
5{% else %}
6 {% set dlbase = 'http://docs.python.org/ftp/python/doc/' + release %}
7{% endif %}
Christian Heimes679db4a2008-01-18 09:56:22 +00008
Georg Brandl49f47182010-03-13 13:42:16 +00009{% block body %}
Benjamin Petersone5384b02008-10-04 22:00:42 +000010<h1>Download Python {{ release }} Documentation</h1>
Christian Heimes679db4a2008-01-18 09:56:22 +000011
Benjamin Petersone5384b02008-10-04 22:00:42 +000012{% if last_updated %}<p><b>Last updated on: {{ last_updated }}.</b></p>{% endif %}
13
Christian Heimes679db4a2008-01-18 09:56:22 +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 Peterson6cadba72008-11-19 22:38:29 +000016in the table are the size of the download files in megabytes.</p>
Christian Heimes679db4a2008-01-18 09:56:22 +000017
Benjamin Peterson9bc93512008-09-22 22:10: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 Peterson92035012008-12-27 16:00:54 +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>
Benjamin Peterson9bc93512008-09-22 22:10:59 +000023 </tr>
24 <tr><td>PDF (A4 paper size)</td>
Benjamin Peterson92035012008-12-27 16:00:54 +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>
Benjamin Peterson9bc93512008-09-22 22:10:59 +000027 </tr>
28 <tr><td>HTML</td>
Benjamin Peterson92035012008-12-27 16:00:54 +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>
Benjamin Peterson9bc93512008-09-22 22:10:59 +000031 </tr>
32 <tr><td>Plain Text</td>
Benjamin Peterson5c6d7872009-02-06 02:40:07 +000033 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.zip">Download</a> (ca. 2 MB)</td>
Benjamin Peterson92035012008-12-27 16:00:54 +000034 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">Download</a> (ca. 1.5 MB)</td>
Benjamin Peterson9bc93512008-09-22 22:10:59 +000035 </tr>
36</table>
Christian Heimes679db4a2008-01-18 09:56:22 +000037
38
Benjamin Peterson9bc93512008-09-22 22:10:59 +000039<p>These archives contain all the content in the documentation.</p>
Christian Heimes679db4a2008-01-18 09:56:22 +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
Benjamin Peterson9bc93512008-09-22 22:10:59 +000050platform. These are created on Unix using the InfoZIP zip program.</p>
Christian Heimes679db4a2008-01-18 09:56:22 +000051
52
53<h2>Problems</h2>
54
Christian Heimes679db4a2008-01-18 09:56:22 +000055<p>If you have comments or suggestions for the Python documentation, please send
Benjamin Peterson6cadba72008-11-19 22:38:29 +000056email to <a href="mailto:docs@python.org">docs@python.org</a>.</p>
Christian Heimes679db4a2008-01-18 09:56:22 +000057{% endblock %}