1{% extends "layout.html" %} 2{% set title = 'Download' %} 3{% if daily is defined %} 4 {% set dlbase = pathto('archives', 1) %} 5{% else %} 6 {% set dlbase = 'https://docs.python.org/ftp/python/doc/' + release %} 7{% endif %} 8 9{% block body %} 10<h1>{% trans %}Download Python {{ release }} Documentation{% endtrans %}</h1> 11 12{% if last_updated %} 13 <p><b>{% trans %}Last updated on: {{ last_updated }}.{% endtrans %}</b></p> 14{% endif %} 15 16<p>{% trans %}To download an archive containing all the documents for 17this version of Python in one of various formats, follow one of links 18in this table. The numbers in the table are the size of the download 19files in megabytes.{% endtrans %}</p> 20 21<table class="docutils"> 22 <tr><th>{% trans %}Format{% endtrans %}</th> 23 <th>{% trans %}Packed as .zip{% endtrans %}</th> 24 <th>{% trans %}Packed as .tar.bz2{% endtrans %}</th> 25 </tr> 26 <tr><td>{% trans %}PDF (US-Letter paper size){% endtrans %}</td> 27 <td> 28 <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.zip"> 29 {% trans %}Download{% endtrans %} 30 </a> {% trans %}(ca. 11 MB){% endtrans %} 31 </td> 32 <td> 33 <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.tar.bz2"> 34 {% trans %}Download{% endtrans %} 35 </a> {% trans %}(ca. 11 MB){% endtrans %} 36 </td> 37 </tr> 38 <tr><td>{% trans %}PDF (A4 paper size){% endtrans %}</td> 39 <td> 40 <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.zip"> 41 {% trans %}Download{% endtrans %} 42 </a> {% trans %}(ca. 11 MB){% endtrans %}</td> 43 <td> 44 <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2"> 45 {% trans %}Download{% endtrans %} 46 </a> {% trans %}(ca. 11 MB){% endtrans %}</td> 47 </tr> 48 <tr><td>{% trans %}HTML{% endtrans %}</td> 49 <td> 50 <a href="{{ dlbase }}/python-{{ release }}-docs-html.zip"> 51 {% trans %}Download{% endtrans %} 52 </a> {% trans %}(ca. 7.5 MB){% endtrans %} 53 </td> 54 <td> 55 <a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2"> 56 {% trans %}Download{% endtrans %} 57 </a> {% trans %}(ca. 5 MB){% endtrans %} 58 </td> 59 </tr> 60 <tr> 61 <td>{% trans %}Plain Text{% endtrans %}</td> 62 <td> 63 <a href="{{ dlbase }}/python-{{ release }}-docs-text.zip"> 64 {% trans %}Download{% endtrans %} 65 </a> {% trans %}(ca. 2.5 MB){% endtrans %} 66 </td> 67 <td> 68 <a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2"> 69 {% trans %}Download{% endtrans %} 70 </a> {% trans %}(ca. 2 MB){% endtrans %} 71 </td> 72 </tr> 73</table> 74 75<p>{% trans %}These archives contain all the content in the 76documentation.{% endtrans %}</p> 77 78<p>{% trans download_page="https://www.python.org/downloads/release/python-" + release.replace('.', '') + "/" %}HTML Help 79(<tt>.chm</tt>) files are made available in the "Files" section 80on the <a href="{{ download_page }}">Python download page</a>.{% endtrans %}</p> 81 82 83<h2>{% trans %}Unpacking{% endtrans %}</h2> 84 85<p>{% trans %}Unix users should download the .tar.bz2 archives; these 86are bzipped tar archives and can be handled in the usual way using tar 87and the bzip2 program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip 88program can be used to handle the ZIP archives if desired. The 89.tar.bz2 archives provide the best compression and fastest download 90times.{% endtrans %}</p> 91 92<p>{% trans %}Windows users can use the ZIP archives since those are 93customary on that platform. These are created on Unix using the 94InfoZIP zip program.{% endtrans %}</p> 95 96 97<h2>{% trans %}Problems{% endtrans %}</h2> 98 99<p>{% trans %}If you have comments or suggestions for the Python 100documentation, please send email to 101<a href="mailto:docs@python.org">docs@python.org</a>.{% endtrans %}</p> 102{% endblock %} 103