Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | Python Documentation README |
| 2 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 3 | |
| 4 | This directory contains the reStructuredText (reST) sources to the Python |
Roger | b3f1f59 | 2017-02-15 17:54:05 -0500 | [diff] [blame] | 5 | documentation. You don't need to build them yourself, `prebuilt versions are |
| 6 | available <https://docs.python.org/dev/download.html>`_. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 7 | |
Zachary Ware | 1de519c | 2014-04-29 09:26:56 -0500 | [diff] [blame] | 8 | Documentation on authoring Python documentation, including information about |
Roger | b3f1f59 | 2017-02-15 17:54:05 -0500 | [diff] [blame] | 9 | both style and markup, is available in the "`Documenting Python |
Lisa Hewus Fresh | 384899d | 2017-08-30 09:37:43 -0700 | [diff] [blame] | 10 | <https://devguide.python.org/documenting/>`_" chapter of the |
Roger | b3f1f59 | 2017-02-15 17:54:05 -0500 | [diff] [blame] | 11 | developers guide. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 12 | |
| 13 | |
| 14 | Building the docs |
| 15 | ================= |
| 16 | |
Ned Deily | 590665c | 2017-09-07 17:17:53 -0700 | [diff] [blame] | 17 | The documentation is built with several tools which are not included in this |
| 18 | tree but are maintained separately and are available from |
| 19 | `PyPI <https://pypi.org/>`_. |
| 20 | |
| 21 | * `Sphinx <https://pypi.org/project/Sphinx/>`_ |
| 22 | * `blurb <https://pypi.org/project/blurb/>`_ |
Jon Wayne Parrott | bf63e8d | 2018-03-01 13:02:50 -0800 | [diff] [blame] | 23 | * `python-docs-theme <https://pypi.org/project/python-docs-theme/>`_ |
Ned Deily | 590665c | 2017-09-07 17:17:53 -0700 | [diff] [blame] | 24 | |
Ned Deily | 122fc13 | 2017-11-27 17:07:32 -0500 | [diff] [blame] | 25 | The easiest way to install these tools is to create a virtual environment and |
| 26 | install the tools into there. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 27 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 28 | Using make |
| 29 | ---------- |
| 30 | |
Ned Deily | 122fc13 | 2017-11-27 17:07:32 -0500 | [diff] [blame] | 31 | To get started on UNIX, you can create a virtual environment with the command :: |
| 32 | |
| 33 | make venv |
| 34 | |
| 35 | That will install all the tools necessary to build the documentation. Assuming |
| 36 | the virtual environment was created in the ``env`` directory (the default; |
| 37 | configurable with the VENVDIR variable), you can run the following command to |
| 38 | build the HTML output files:: |
Ned Deily | 590665c | 2017-09-07 17:17:53 -0700 | [diff] [blame] | 39 | |
| 40 | make html |
| 41 | |
| 42 | By default, if the virtual environment is not created, the Makefile will |
| 43 | look for instances of sphinxbuild and blurb installed on your process PATH |
| 44 | (configurable with the SPHINXBUILD and BLURB variables). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 45 | |
Georg Brandl | 18a364f | 2014-03-10 19:26:57 +0100 | [diff] [blame] | 46 | On Windows, we try to emulate the Makefile as closely as possible with a |
Ned Deily | 122fc13 | 2017-11-27 17:07:32 -0500 | [diff] [blame] | 47 | ``make.bat`` file. If you need to specify the Python interpreter to use, |
| 48 | set the PYTHON environment variable instead. |
Georg Brandl | 716c3ac | 2007-08-30 18:34:23 +0000 | [diff] [blame] | 49 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 50 | Available make targets are: |
| 51 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 52 | * "clean", which removes all build files. |
Zachary Ware | 1de519c | 2014-04-29 09:26:56 -0500 | [diff] [blame] | 53 | |
Ned Deily | 590665c | 2017-09-07 17:17:53 -0700 | [diff] [blame] | 54 | * "venv", which creates a virtual environment with all necessary tools |
| 55 | installed. |
| 56 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 57 | * "html", which builds standalone HTML files for offline viewing. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 58 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 59 | * "htmlview", which re-uses the "html" builder, but then opens the main page |
| 60 | in your default web browser. |
Zachary Ware | 1de519c | 2014-04-29 09:26:56 -0500 | [diff] [blame] | 61 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 62 | * "htmlhelp", which builds HTML files and a HTML Help project file usable to |
| 63 | convert them into a single Compiled HTML (.chm) file -- these are popular |
| 64 | under Microsoft Windows, but very handy on every platform. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 65 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 66 | To create the CHM file, you need to run the Microsoft HTML Help Workshop |
| 67 | over the generated project (.hhp) file. The make.bat script does this for |
| 68 | you on Windows. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 69 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 70 | * "latex", which builds LaTeX source files as input to "pdflatex" to produce |
| 71 | PDF documents. |
Christian Heimes | 3feef61 | 2008-02-11 06:19:17 +0000 | [diff] [blame] | 72 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 73 | * "text", which builds a plain text file for each source file. |
Georg Brandl | 0c77a82 | 2008-06-10 16:37:50 +0000 | [diff] [blame] | 74 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 75 | * "epub", which builds an EPUB document, suitable to be viewed on e-book |
| 76 | readers. |
Georg Brandl | 183fe81 | 2011-01-05 11:00:25 +0000 | [diff] [blame] | 77 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 78 | * "linkcheck", which checks all external references to see whether they are |
| 79 | broken, redirected or malformed, and outputs this information to stdout as |
| 80 | well as a plain-text (.txt) file. |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 81 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 82 | * "changes", which builds an overview over all versionadded/versionchanged/ |
| 83 | deprecated items in the current version. This is meant as a help for the |
| 84 | writer of the "What's New" document. |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 85 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 86 | * "coverage", which builds a coverage overview for standard library modules and |
| 87 | C API. |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 88 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 89 | * "pydoc-topics", which builds a Python module containing a dictionary with |
| 90 | plain text documentation for the labels defined in |
| 91 | `tools/pyspecific.py` -- pydoc needs these to show topic and keyword help. |
Georg Brandl | 6b38daa | 2008-06-01 21:05:17 +0000 | [diff] [blame] | 92 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 93 | * "suspicious", which checks the parsed markup for text that looks like |
| 94 | malformed and thus unconverted reST. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 95 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 96 | * "check", which checks for frequent markup errors. |
Zachary Ware | 1de519c | 2014-04-29 09:26:56 -0500 | [diff] [blame] | 97 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 98 | * "serve", which serves the build/html directory on port 8000. |
Zachary Ware | 1de519c | 2014-04-29 09:26:56 -0500 | [diff] [blame] | 99 | |
Georg Brandl | 69a7203 | 2014-10-29 08:18:43 +0100 | [diff] [blame] | 100 | * "dist", (Unix only) which creates distributable archives of HTML, text, |
| 101 | PDF, and EPUB builds. |
Zachary Ware | 1de519c | 2014-04-29 09:26:56 -0500 | [diff] [blame] | 102 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 103 | |
| 104 | Without make |
| 105 | ------------ |
| 106 | |
Ned Deily | 122fc13 | 2017-11-27 17:07:32 -0500 | [diff] [blame] | 107 | First, install the tool dependencies from PyPI. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 108 | |
Ned Deily | 122fc13 | 2017-11-27 17:07:32 -0500 | [diff] [blame] | 109 | Then, from the ``Doc`` directory, run :: |
| 110 | |
| 111 | sphinx-build -b<builder> . build/<builder> |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 112 | |
Georg Brandl | 18a364f | 2014-03-10 19:26:57 +0100 | [diff] [blame] | 113 | where ``<builder>`` is one of html, text, latex, or htmlhelp (for explanations |
| 114 | see the make targets above). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 115 | |
| 116 | |
| 117 | Contributing |
| 118 | ============ |
| 119 | |
Lisa Hewus Fresh | 384899d | 2017-08-30 09:37:43 -0700 | [diff] [blame] | 120 | Bugs in the content should be reported to the |
Roger | b3f1f59 | 2017-02-15 17:54:05 -0500 | [diff] [blame] | 121 | `Python bug tracker <https://bugs.python.org>`_. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 122 | |
Ned Deily | 590665c | 2017-09-07 17:17:53 -0700 | [diff] [blame] | 123 | Bugs in the toolset should be reported to the tools themselves. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 124 | |
| 125 | You can also send a mail to the Python Documentation Team at docs@python.org, |
| 126 | and we will process your request as soon as possible. |
| 127 | |
| 128 | If you want to help the Documentation Team, you are always welcome. Just send |
| 129 | a mail to docs@python.org. |