Skip to content

graingert/pydoctor

 
 

Repository files navigation

pydoctor

image

image

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.

Contents:

Usage

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.

Markup

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 Integration

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

Linking to external API docs

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

Linking to your API docs

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`

What's New?

pydoctor 20.7.2

  • Fix handling of external links in reStructuredText under Python 3
  • Fix reporting of errors in reStructuredText under Python 3
  • Restore syntax highlighting of Python code blocks

pydoctor 20.7.1

  • Fix cross-reference links to builtin types in standard library
  • Fix and improve error message printed for unknown fields

pydoctor 20.7.0

  • 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 major release to support Python 2.7 and 3.5: future major releases will require Python 3.6 or later.

Releasing a new package

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

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 95.9%
  • HTML 2.9%
  • CSS 1.1%
  • JavaScript 0.1%