cpython/Doc/tools/sphinxext/download.html

61 lines
2.5 KiB
HTML
Raw Normal View History

{% extends "layout.html" %}
{% set title = 'Download' %}
2008-09-21 19:31:59 -03:00
{% set dlbase = 'http://docs.python.org/ftp/python/doc/' + release %}
{% block body %}
2008-09-28 17:01:36 -03:00
<h1>Download Python {{ release }} Documentation</h1>
2008-09-28 05:34:31 -03:00
{% if 'a' in release or 'b' in release or 'c' in release %}
<p>We don't package the documentation for development releases for download.
Downloads will be available for the final release.</p>
{% else %}
2008-09-28 17:01:36 -03:00
{% if last_updated %}<p><b>Last updated on: {{ last_updated }}.</b></p>{% endif %}
<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
2008-11-17 17:39:05 -04:00
in the table are the size of the download files in megabytes.</p>
2008-09-21 19:31:59 -03:00
<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>
<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>
2008-09-21 19:31:59 -03:00
</tr>
<tr><td>PDF (A4 paper size)</td>
<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>
2008-09-21 19:31:59 -03:00
</tr>
<tr><td>HTML</td>
<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>
2008-09-21 19:31:59 -03:00
</tr>
<tr><td>Plain Text</td>
2009-02-05 21:47:31 -04:00
<td><a href="{{ dlbase }}/python-{{ release }}-docs-text.zip">Download</a> (ca. 2 MB)</td>
<td><a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">Download</a> (ca. 1.5 MB)</td>
2008-09-21 19:31:59 -03:00
</tr>
</table>
<p>These archives contain all the content in the documentation.</p>
<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
2008-09-21 19:31:59 -03:00
platform. These are created on Unix using the InfoZIP zip program.</p>
<h2>Problems</h2>
<p>If you have comments or suggestions for the Python documentation, please send
2008-11-17 17:39:05 -04:00
email to <a href="mailto:docs@python.org">docs@python.org</a>.</p>
2008-09-28 05:34:31 -03:00
{% endif %}
{% endblock %}