Automatic generation of default arguments for the Sphinx autodoc extension.
Project description
sphinx-autodoc-defaultargs
Overview
This extension automatically generates default arguments for the Sphinx autodoc extension.
Example
With this package, the default values of all documented arguments, and undocumented arguments if enabled, are automatically detected and added to the docstring.
It also detects existing documentation of default arguments with the text unchanged.
def func(x=None, y=None):
"""
Example docstring.
:param x: The default value ``None`` will be added here.
:param y: The text of default value is unchanged.
(Default: ``'Default Value'``)
"""
if y is None:
y = 'Default Value'
...
Installation
pip
If you use pip
, you can install the package with:
python -m pip install sphinx_autodoc_defaultargs
setup.py
In the root directory, run the following command in the terminal.
python setup.py install
Usage
Add the extension as well as the global substitution to the conf.py
file:
extensions = [
'sphinx.ext.autodoc',
'sphinx_autodoc_defaultargs'
]
rst_prolog = """
.. |default| raw:: html
<div class="default-value-section">""" + \
' <span class="default-value-label">Default:</span>'
Note that it should be loaded after sphinx.ext.napoleon.
Config Options
-
always_document_default_args
(default:False
): If False, do not add info of default arguments for undocumented parameters. If True, add stub documentation for undocumented parameters to be able to add default value and to flagoptional
in the type. -
docstring_default_arg_flags
(default:[('(Default: ', ')')]
): List of pairs indicating the header and the footer of an existing documentation of default values, which is expected at the end of theparam
section. If detected, it will be replaced by the unified style but the text should remain unchanged. -
docstring_default_arg_after_directives
(default:False
): If True, the default value will be added after all directives (e.g., note, warning). Existing documentation of the default value is also expected after these directives. Otherwise, it will be added, and expected to exist, before these directives. -
docstring_default_arg_substitution
(default:'|default|'
): The substitution markup defined in theconf.py
file.
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
Built Distribution
Hashes for sphinx-autodoc-defaultargs-0.1.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b11cd9ac43510c1f1e9a3f9469a370e6bbe2bc2cb9e67cb79987f4dcd3be5be3 |
|
MD5 | 5d7a7652961fb51e5e4bd632e5cc3940 |
|
BLAKE2b-256 | 1a7c8edb5d817ebeb146073be629ed58f89b292a643ee111bee3c703be05a7a1 |
Hashes for sphinx_autodoc_defaultargs-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1513b1aea8c20348f1763dbfd7ff11f86cd77f2ce3246c73e1405a2a67fea3ff |
|
MD5 | 6878ce894409920cf6c60cac9772f264 |
|
BLAKE2b-256 | e23fa352e58671b1e6d932a6a4b28b45ff58791788ab7fb6a1f9a7162411198d |