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 17 this version of Python in one of various formats, follow one of links 18 in this table. The numbers in the table are the size of the download 19 files 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. 8 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. 8 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. 8 MB){% endtrans %}</td> 43 <td> 44 <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2"> 45 {% trans %}Download{% endtrans %} 46 </a> {% trans %}(ca. 8 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. 6 MB){% endtrans %} 53 </td> 54 <td> 55 <a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2"> 56 {% trans %}Download{% endtrans %} 57 </a> {% trans %}(ca. 4 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 MB){% endtrans %} 66 </td> 67 <td> 68 <a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2"> 69 {% trans %}Download{% endtrans %} 70 </a> {% trans %}(ca. 1.5 MB){% endtrans %} 71 </td> 72 </tr> 73 </table> 74 75 <p>{% trans %}These archives contain all the content in the 76 documentation.{% endtrans %}</p> 77 78 <p>{% trans download_page="https://www.python.org/download/releases/{{ release[:5] }}/" %}HTML Help 79 (<tt>.chm</tt>) files are made available in the "Windows" section 80 on 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 86 are bzipped tar archives and can be handled in the usual way using tar 87 and the bzip2 program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip 88 program can be used to handle the ZIP archives if desired. The 89 .tar.bz2 archives provide the best compression and fastest download 90 times.{% endtrans %}</p> 91 92 <p>{% trans %}Windows users can use the ZIP archives since those are 93 customary on that platform. These are created on Unix using the 94 InfoZIP 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 100 documentation, please send email to 101 <a href="mailto:docs (a] python.org">docs (a] python.org</a>.{% endtrans %}</p> 102 {% endblock %} 103