/pydoctor

Generate readable documentation for users based on source code with epytext-formatted docstrings, with support for zope.interface.

Primary LanguagePythonOtherNOASSERTION

pydoctor

https://travis-ci.org/twisted/pydoctor.svg?branch=tox-travis-2

This is pydoctor, an API documentation generator that works by static analysis.

It was written primarily to replace epydoc for the purposes of the Twisted project as epydoc has difficulties with zope.interface. If you are looking for a successor to epydoc after moving to Python 3, pydoctor might be the right tool for your project as well.

pydoctor puts a fair bit of effort into resolving imports and computing inheritance hierarchies and, as it aims at documenting Twisted, knows about zope.interface's declaration API and can present information about which classes implement which interface, and vice versa.

You can run pydoctor on your project like this:

$ pydoctor --make-html --html-output=docs/api --add-package=src/mylib

You can see the full list of options using pydoctor --help.

pydoctor currently supports the following markup languages in docstrings:

epytext (default)
The markup language of epydoc. Simple and compact.
reStructuredText
The markup language used by Sphinx. More expressive than epytext, but also slighly more complex and verbose.
plain text
Text without any markup.

You can select a different format using the --docformat option.

Sphinx object inventories can be used to create deep links between API documentation generated by pydoctor and by Sphinx.

It can link to external API documentation using a Sphinx objects inventory with the following cumulative configuration option:

--intersphinx=http://sphinx-doc.org/objects.inv

pydoctor's HTML generator will also generate a Sphinx objects inventory using the following mapping:

  • packages, modules -> py:mod:
  • classes -> py:class:
  • functions -> py:func:
  • methods -> py:meth:
  • attributes -> py:attr:

To use this mapping in Sphinx, configure the intersphinx extension:

intersphinx_mapping = {
    'pydoctor': ('http://domain.tld/api', None),
}

And use external references:

:py:func:`External API <pydoctor:pydoctor.model.Documentable.reparent>`

:py:mod:`pydoctor:pydoctor`
:py:mod:`pydoctor:pydoctor.model`
:py:func:`pydoctor:pydoctor.driver.getparser`
:py:class:`pydoctor:pydoctor.model.Documentable`
:py:meth:`pydoctor:pydoctor.model.Documentable.reparent`
:py:attr:`pydoctor:pydoctor.model.Documentable.kind`
  • Python 3 support
  • Type annotations on attributes are supported when running on Python 3
  • Type comments on attributes are supported when running on Python 3.8+
  • Type annotations on function definitions are not supported yet
  • Undocumented attributes are now included in the output
  • Attribute docstrings: a module, class or instance variable can be documented by a following it up with a docstring
  • Improved error reporting: more errors are reported, error messages include file name and line number
  • Dropped support for implicit relative imports
  • Explicit relative imports (using from) no longer cause warnings
  • Dropped support for index terms in epytext (X{}); this was never supported in any meaningful capacity, but now the tag is gone

This will be the last release to support Python 2.7 and 3.5: future releases will require Python 3.6 or later.

Releasing a new version is done via Travis-CI. First commit the version update to master and wait for tests to pass. Create a tag on local branch and then push it:

git tag 1.2.3
git push --tags