Skip to main content

An extension to Sphinx :code:`autodoc` to augment Sphinx documentation with type annotations, when using Python 2 style type annotations.

Project description

An extension to Sphinx autodoc to augment Sphinx documentation with type annotations, when using Python 2 style type annotations.

The Problem

Python 2 doesn’t support type annotations. Thus writing Python 2 / Python 3 agnostic code with type annotations requires putting the type annotations in comments:

def add(x, y):
    # type: (int, int) -> int
    """Adds two numbers."""
    return x + y

But now when documentation is generated with Sphinx, the documentation doesn’t include type annotations:

https://raw.githubusercontent.com/patrick-kidger/py2annotate/master/imgs/without-annotations.png

Example from the Signatory project.

The Solution

This extension remedies things so that the Sphinx documentation now looks like:

https://raw.githubusercontent.com/patrick-kidger/py2annotate/master/imgs/with-annotations.png

(which is the same as what you’d get using Python 3 style type annotations e.g. def add(x: int, y: int) -> int)

Installation

Via pip:

pip install py2annotate

It’s also just a single file, so copy-paste the code if you want.

Usage

Just add py2annotate to the list of extensions in conf.py:

# conf.py
...
extensions = ['sphinx.ext.autodoc', 'py2annotate']
...

(It shouldn’t matter whether it comes before or after autodoc.)

Note that Sphinx itself must be run using Python 3, not Python 2. This is because py2annotate uses the Python 3 style type annotations internally in order to determine the correct annotations.

Known Issues

None so far! File a report if you run into anything. mypy and stubgen are used internally though, so your code’s formatting must be in a manner that they understand.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py2annotate-1.0.2.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

py2annotate-1.0.2-py3-none-any.whl (4.1 kB view details)

Uploaded Python 3

File details

Details for the file py2annotate-1.0.2.tar.gz.

File metadata

  • Download URL: py2annotate-1.0.2.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.5.6

File hashes

Hashes for py2annotate-1.0.2.tar.gz
Algorithm Hash digest
SHA256 50f2bbae13d5740b9d81a33aabafd1e43494df1627112149af4b82c7bfcb39b5
MD5 578fd3f11217862d77094b3695b108f3
BLAKE2b-256 2f5e89ead7c52fcec5a676d5653b94796b003b9480f0824140118027bab8e0d5

See more details on using hashes here.

File details

Details for the file py2annotate-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: py2annotate-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 4.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.5.6

File hashes

Hashes for py2annotate-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 558e095dc0b44bb73c6b7c1f8d0ff9bbc8cfbdb6114c141546e7264ce0b0b8f7
MD5 6b16f49be298bceb1ec042359a6fafdc
BLAKE2b-256 5d4046912e716daf7167cd6d73bb2ddc1b3edaa7f9ce28023d4859c608d2cb4e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page