download.html 2.77 KB
Newer Older
1 2
{% extends "layout.html" %}
{% set title = 'Download' %}
3 4 5 6 7
{% if daily is defined %}
  {% set dlbase = pathto('archives', 1) %}
{% else %}
  {% set dlbase = 'http://docs.python.org/ftp/python/doc/' + release %}
{% endif %}
8

9
{% block body %}
10
<h1>Download Python {{ release }} Documentation</h1>
11

12 13
{% if last_updated %}<p><b>Last updated on: {{ last_updated }}.</b></p>{% endif %}

14 15
<p>To download an archive containing all the documents for this version of
Python in one of various formats, follow one of links in this table. The numbers
16
in the table are the size of the download files in megabytes.</p>
17

Benjamin Peterson's avatar
Benjamin Peterson committed
18 19 20
<table class="docutils">
  <tr><th>Format</th><th>Packed as .zip</th><th>Packed as .tar.bz2</th></tr>
  <tr><td>PDF (US-Letter paper size)</td>
Benjamin Peterson's avatar
Benjamin Peterson committed
21 22
    <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.zip">Download</a> (ca. 8 MB)</td>
    <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.tar.bz2">Download</a> (ca. 8 MB)</td>
Benjamin Peterson's avatar
Benjamin Peterson committed
23 24
  </tr>
  <tr><td>PDF (A4 paper size)</td>
Benjamin Peterson's avatar
Benjamin Peterson committed
25 26
    <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.zip">Download</a> (ca. 8 MB)</td>
    <td><a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2">Download</a> (ca. 8 MB)</td>
Benjamin Peterson's avatar
Benjamin Peterson committed
27 28
  </tr>
  <tr><td>HTML</td>
Benjamin Peterson's avatar
Benjamin Peterson committed
29 30
    <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.zip">Download</a> (ca. 6 MB)</td>
    <td><a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2">Download</a> (ca. 4 MB)</td>
Benjamin Peterson's avatar
Benjamin Peterson committed
31 32
  </tr>
  <tr><td>Plain Text</td>
Benjamin Peterson's avatar
Benjamin Peterson committed
33
    <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.zip">Download</a> (ca. 2 MB)</td>
Benjamin Peterson's avatar
Benjamin Peterson committed
34
    <td><a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">Download</a> (ca. 1.5 MB)</td>
Benjamin Peterson's avatar
Benjamin Peterson committed
35
  </tr>
36 37 38 39
 <tr><td>EPUB</td>
    <td><a href="{{ dlbase }}/python-{{ release }}-docs-epub.zip">Download</a> (ca. 3.5 MB)</td>
    <td><a href="{{ dlbase }}/python-{{ release }}-docs-epub.tar.bz2">Download</a> (ca. 3.5 MB)</td>
  </tr>
Benjamin Peterson's avatar
Benjamin Peterson committed
40 41 42
</table>

<p>These archives contain all the content in the documentation.</p>
43

44 45 46 47 48
<p>HTML Help (<tt>.chm</tt>) files are made available in the "Windows" section
on the <a href="http://python.org/download/releases/{{ release[:5] }}/">Python
download page</a>.</p>


49 50 51 52 53 54 55 56 57
<h2>Unpacking</h2>

<p>Unix users should download the .tar.bz2 archives; these are bzipped tar
archives and can be handled in the usual way using tar and the bzip2
program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip program can be
used to handle the ZIP archives if desired. The .tar.bz2 archives provide the
best compression and fastest download times.</p>

<p>Windows users can use the ZIP archives since those are customary on that
Benjamin Peterson's avatar
Benjamin Peterson committed
58
platform. These are created on Unix using the InfoZIP zip program.</p>
59 60 61 62 63


<h2>Problems</h2>

<p>If you have comments or suggestions for the Python documentation, please send
64
email to <a href="mailto:docs@python.org">docs@python.org</a>.</p>
65
{% endblock %}