ppc64le/linux/: sphinx-autodoc-typehints-3.2.0 metadata and description

Simple index

Type hints (PEP 484) support for the Sphinx autodoc extension

author_email Bernát Gábor <[email protected]>
classifiers
  • Development Status :: 5 - Production/Stable
  • Framework :: Sphinx :: Extension
  • Intended Audience :: Developers
  • License :: OSI Approved :: MIT License
  • Programming Language :: Python
  • Programming Language :: Python :: 3 :: Only
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Programming Language :: Python :: 3.13
  • Topic :: Documentation :: Sphinx
  • Environment :: MetaData :: IBM Python Ecosystem
description_content_type text/markdown
keywords environments,isolated,testing,virtual
license_expression MIT
license_file LICENSE
maintainer_email Bernát Gábor <[email protected]>
project_urls
  • Changelog, https://github.com/tox-dev/sphinx-autodoc-typehints/releases
  • Homepage, https://github.com/tox-dev/sphinx-autodoc-typehints
  • Source, https://github.com/tox-dev/sphinx-autodoc-typehints
  • Tracker, https://github.com/tox-dev/sphinx-autodoc-typehints/issues
provides_extras testing
requires_dist
  • sphinx>=8.2
  • furo>=2024.8.6; extra == 'docs'
  • covdefaults>=2.3; extra == 'testing'
  • coverage>=7.6.12; extra == 'testing'
  • defusedxml>=0.7.1; extra == 'testing'
  • diff-cover>=9.2.3; extra == 'testing'
  • pytest-cov>=6; extra == 'testing'
  • pytest>=8.3.4; extra == 'testing'
  • sphobjinv>=2.3.1.2; extra == 'testing'
  • typing-extensions>=4.12.2; extra == 'testing'
requires_python >=3.11
File Tox results History
sphinx_autodoc_typehints-3.2.0-py3-none-any.whl
Size
21 KB
Type
Python Wheel
Python
3

sphinx-autodoc-typehints

PyPI Supported Python versions Downloads check

This extension allows you to use Python 3 annotations for documenting acceptable argument types and return value types of functions. See an example of the Sphinx render at the pyproject-api docs.

This allows you to use type hints in a very natural fashion, allowing you to migrate from this:

def format_unit(value, unit):
    """
    Formats the given value as a human readable string using the given units.

    :param float|int value: a numeric value
    :param str unit: the unit for the value (kg, m, etc.)
    :rtype: str
    """
    return f"{value} {unit}"

to this:

from typing import Union


def format_unit(value: Union[float, int], unit: str) -> str:
    """
    Formats the given value as a human readable string using the given units.

    :param value: a numeric value
    :param unit: the unit for the value (kg, m, etc.)
    """
    return f"{value} {unit}"

Installation and setup

First, use pip to download and install the extension:

pip install sphinx-autodoc-typehints

Then, add the extension to your conf.py:

extensions = ["sphinx.ext.autodoc", "sphinx_autodoc_typehints"]

Options

The following configuration options are accepted:

How it works

The extension listens to the autodoc-process-signature and autodoc-process-docstring Sphinx events. In the former, it strips the annotations from the function signature. In the latter, it injects the appropriate :type argname: and :rtype: directives into the docstring.

Only arguments that have an existing :param: directive in the docstring get their respective :type: directives added. The :rtype: directive is added if and only if no existing :rtype: is found.

Compatibility with sphinx.ext.napoleon

To use sphinx.ext.napoleon with sphinx-autodoc-typehints, make sure you load sphinx.ext.napoleon first, before sphinx-autodoc-typehints. See Issue 15 on the issue tracker for more information.

Dealing with circular imports

Sometimes functions or classes from two different modules need to reference each other in their type annotations. This creates a circular import problem. The solution to this is the following:

  1. Import only the module, not the classes/functions from it
  2. Use forward references in the type annotations (e.g. def methodname(self, param1: 'othermodule.OtherClass'):)

On Python 3.7, you can even use from __future__ import annotations and remove the quotes.