Use Python 3 annotations in sphinx-enabled docstrings
Project description
Use Python 3 annotations in sphinx-enabled docstrings
If you’re on Python 3 and writing sphinx-enabled docstrings, you might feel like doing needless work when typing :type arg: or :rtype: directives. After all, why not use annotations for this?
Sure, :param str arg: description is not a lot of work, but when you want to document your argument as a specific class for which you have a :class: link, then you need to use :type: and it’s cumbersome. By using this sphinx extension, you can turn this:
def f(a): """Do something. :param a: description for a :type a: :class:`ClassForA` :rtype: str """
into:
def f(a: ClassForA) -> str: """Do something. :param a: description for a """
Installation
First, you need Python 3.3+ and a Sphinx documentation (with autodoc enabled).
You can install sphinx-autodoc-annotation with:
$ pip install sphinx-autodoc-annotation
Then, you need to enable it in your conf.py file:
extensions = [ 'sphinx.ext.autodoc', 'sphinx_autodoc_annotation', ]
You’re done!
Usage
All you need to do to use this extension is to properly annotate your functions and methods with expected types for your arguments and return value. :type: and :rtype: directives will automatically be added to your docstring.
These directives behave like if you added them manually, that is, your argument is not going to show up only with :type arg: you need :param arg: to be there (with a description of what it does) for your type to show up.
When there are no annotations, argument types are deduced from default values. If your default value is a bool, str, int or float, the argument is going to be considered of that type. That feature is there mainly because f(flag: bool = False) feels a bit redundant.
In all cases, :type: and :rtype: directives in the docstring will always have precedence over annotations and defaults.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for sphinx-autodoc-annotation-1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab320d88f094ee4f8539cc08323f8486d8be856f8ab2fe9dc85607984b21e885 |
|
MD5 | ed5dffbbf941bee9e74496758967010f |
|
BLAKE2b-256 | 4bc0a424fddc7ecb65d5fba7996cf49caeac377a5e0f1c25f9c50b002da8a605 |