103 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
| {% extends "layout.html" %}
 | |
| {% set title = 'Download' %}
 | |
| {% if daily is defined %}
 | |
|   {% set dlbase = pathto('archives', 1) %}
 | |
| {% else %}
 | |
|   {% set dlbase = 'https://docs.python.org/ftp/python/doc/' + release %}
 | |
| {% endif %}
 | |
| 
 | |
| {% block body %}
 | |
| <h1>{% trans %}Download Python {{ release }} Documentation{% endtrans %}</h1>
 | |
| 
 | |
| {% if last_updated %}
 | |
|   <p><b>{% trans %}Last updated on: {{ last_updated }}.{% endtrans %}</b></p>
 | |
| {% endif %}
 | |
| 
 | |
| <p>{% trans %}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 in the table are the size of the download
 | |
| files in megabytes.{% endtrans %}</p>
 | |
| 
 | |
| <table class="docutils">
 | |
|   <tr><th>{% trans %}Format{% endtrans %}</th>
 | |
|     <th>{% trans %}Packed as .zip{% endtrans %}</th>
 | |
|     <th>{% trans %}Packed as .tar.bz2{% endtrans %}</th>
 | |
|   </tr>
 | |
|   <tr><td>{% trans %}PDF (US-Letter paper size){% endtrans %}</td>
 | |
|     <td>
 | |
|       <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.zip">
 | |
|         {% trans %}Download{% endtrans %}
 | |
|       </a> {% trans %}(ca. 11 MB){% endtrans %}
 | |
|     </td>
 | |
|     <td>
 | |
|       <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-letter.tar.bz2">
 | |
|         {% trans %}Download{% endtrans %}
 | |
|       </a> {% trans %}(ca. 11 MB){% endtrans %}
 | |
|     </td>
 | |
|   </tr>
 | |
|   <tr><td>{% trans %}PDF (A4 paper size){% endtrans %}</td>
 | |
|     <td>
 | |
|       <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.zip">
 | |
|         {% trans %}Download{% endtrans %}
 | |
|       </a> {% trans %}(ca. 11 MB){% endtrans %}</td>
 | |
|     <td>
 | |
|       <a href="{{ dlbase }}/python-{{ release }}-docs-pdf-a4.tar.bz2">
 | |
|         {% trans %}Download{% endtrans %}
 | |
|       </a> {% trans %}(ca. 11 MB){% endtrans %}</td>
 | |
|   </tr>
 | |
|   <tr><td>{% trans %}HTML{% endtrans %}</td>
 | |
|     <td>
 | |
|       <a href="{{ dlbase }}/python-{{ release }}-docs-html.zip">
 | |
|         {% trans %}Download{% endtrans %}
 | |
|       </a> {% trans %}(ca. 7.5 MB){% endtrans %}
 | |
|     </td>
 | |
|     <td>
 | |
|       <a href="{{ dlbase }}/python-{{ release }}-docs-html.tar.bz2">
 | |
|         {% trans %}Download{% endtrans %}
 | |
|       </a> {% trans %}(ca. 5 MB){% endtrans %}
 | |
|     </td>
 | |
|   </tr>
 | |
|   <tr>
 | |
|     <td>{% trans %}Plain Text{% endtrans %}</td>
 | |
|     <td>
 | |
|       <a href="{{ dlbase }}/python-{{ release }}-docs-text.zip">
 | |
|         {% trans %}Download{% endtrans %}
 | |
|       </a> {% trans %}(ca. 2.5 MB){% endtrans %}
 | |
|     </td>
 | |
|     <td>
 | |
|       <a href="{{ dlbase }}/python-{{ release }}-docs-text.tar.bz2">
 | |
|         {% trans %}Download{% endtrans %}
 | |
|       </a> {% trans %}(ca. 2 MB){% endtrans %}
 | |
|     </td>
 | |
|   </tr>
 | |
| </table>
 | |
| 
 | |
| <p>{% trans %}These archives contain all the content in the
 | |
| documentation.{% endtrans %}</p>
 | |
| 
 | |
| <p>{% trans download_page="https://www.python.org/downloads/release/python-" + release.replace('.', '') + "/" %}HTML Help
 | |
| (<tt>.chm</tt>) files are made available in the "Files" section
 | |
| on the <a href="{{ download_page }}">Python download page</a>.{% endtrans %}</p>
 | |
| 
 | |
| 
 | |
| <h2>{% trans %}Unpacking{% endtrans %}</h2>
 | |
| 
 | |
| <p>{% trans %}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.{% endtrans %}</p>
 | |
| 
 | |
| <p>{% trans %}Windows users can use the ZIP archives since those are
 | |
| customary on that platform. These are created on Unix using the
 | |
| InfoZIP zip program.{% endtrans %}</p>
 | |
| 
 | |
| 
 | |
| <h2>{% trans %}Problems{% endtrans %}</h2>
 | |
| 
 | |
| <p>{% trans %}If you have comments or suggestions for the Python
 | |
| documentation, please send email to
 | |
| <a href="mailto:docs@python.org">docs@python.org</a>.{% endtrans %}</p>
 | |
| {% endblock %}
 |