Sphinx
(Python Documentation Generator)
Note
This project is under active development.
Quick start
Assuming you have Python already, install Sphinx:
pip install sphinx
Now that you have added some files and content, let’s make a first build of the docs. A build is started with the sphinx-build program:
sphinx-build -b html sourcedir builddir
where sourcedir is the source directory, and builddir is the directory in which you want to place the built documentation. The -b option selects a builder; in this example Sphinx will build HTML files.
Building your HTML documentation
sphinx-build -b html source/ build/html