blob: d9364d6ced729f18d9d53b4292545f3bce5464d0 [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 %}
Georg Brandl46761ec2014-10-29 08:36:15 +01006 {% set dlbase = 'https://docs.python.org/ftp/python/doc/' + release %}
Georg Brandl49f47182010-03-13 13:42:16 +00007{% 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
Stéphane Wirtele9b49d12019-05-06 14:48:17 -040015Python in one of various formats, follow one of links in this table.</p>
Christian Heimes679db4a2008-01-18 09:56:22 +000016
Benjamin Peterson9bc93512008-09-22 22:10:59 +000017<table class="docutils">
18 <tr><th>Format</th><th>Packed as .zip</th><th>Packed as .tar.bz2</th></tr>
19 <tr><td>PDF (US-Letter paper size)</td>
Victor Stinner8c663fd2017-11-08 14:44:44 -080020 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.zip">Download</a> (ca. 13 MiB)</td>
21 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.tar.bz2">Download</a> (ca. 13 MiB)</td>
Benjamin Peterson9bc93512008-09-22 22:10:59 +000022 </tr>
23 <tr><td>PDF (A4 paper size)</td>
Victor Stinner8c663fd2017-11-08 14:44:44 -080024 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.zip">Download</a> (ca. 13 MiB)</td>
25 <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2">Download</a> (ca. 13 MiB)</td>
Benjamin Peterson9bc93512008-09-22 22:10:59 +000026 </tr>
27 <tr><td>HTML</td>
Victor Stinner8c663fd2017-11-08 14:44:44 -080028 <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.zip">Download</a> (ca. 9 MiB)</td>
29 <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2">Download</a> (ca. 6 MiB)</td>
Benjamin Peterson9bc93512008-09-22 22:10:59 +000030 </tr>
31 <tr><td>Plain Text</td>
Victor Stinner8c663fd2017-11-08 14:44:44 -080032 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.zip">Download</a> (ca. 3 MiB)</td>
33 <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">Download</a> (ca. 2 MiB)</td>
Benjamin Peterson9bc93512008-09-22 22:10:59 +000034 </tr>
Georg Brandl183fe812011-01-05 11:00:25 +000035 <tr><td>EPUB</td>
Victor Stinner8c663fd2017-11-08 14:44:44 -080036 <td><a href="{{ dlbase }}/python-{{ release }}-docs.epub">Download</a> (ca. 5 MiB)</td>
Georg Brandl865bdbf2014-03-28 19:48:55 +010037 <td></td>
Georg Brandl183fe812011-01-05 11:00:25 +000038 </tr>
Benjamin Peterson9bc93512008-09-22 22:10:59 +000039</table>
Christian Heimes679db4a2008-01-18 09:56:22 +000040
Benjamin Peterson9bc93512008-09-22 22:10:59 +000041<p>These archives contain all the content in the documentation.</p>
Christian Heimes679db4a2008-01-18 09:56:22 +000042
Georg Brandl525fd542012-03-14 08:18:47 +010043<p>HTML Help (<tt>.chm</tt>) files are made available in the "Windows" section
cocoatomof8beb982017-03-27 02:32:24 +090044on the <a href="https://www.python.org/downloads/release/python-{{ release.replace('.', '') }}/">Python
Georg Brandl525fd542012-03-14 08:18:47 +010045download page</a>.</p>
46
47
Christian Heimes679db4a2008-01-18 09:56:22 +000048<h2>Unpacking</h2>
49
50<p>Unix users should download the .tar.bz2 archives; these are bzipped tar
51archives and can be handled in the usual way using tar and the bzip2
52program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip program can be
53used to handle the ZIP archives if desired. The .tar.bz2 archives provide the
54best compression and fastest download times.</p>
55
56<p>Windows users can use the ZIP archives since those are customary on that
Benjamin Peterson9bc93512008-09-22 22:10:59 +000057platform. These are created on Unix using the InfoZIP zip program.</p>
Christian Heimes679db4a2008-01-18 09:56:22 +000058
59
60<h2>Problems</h2>
61
Christian Heimes679db4a2008-01-18 09:56:22 +000062<p>If you have comments or suggestions for the Python documentation, please send
Benjamin Peterson6cadba72008-11-19 22:38:29 +000063email to <a href="mailto:docs@python.org">docs@python.org</a>.</p>
Christian Heimes679db4a2008-01-18 09:56:22 +000064{% endblock %}