"Parse Python docstrings in reST, Google and Numpydoc format"
Project description
docstring_parser
Parse Python docstrings. Currently support ReST, Google, and Numpydoc-style docstrings.
Example usage:
>>> from docstring_parser import parse
>>>
>>>
>>> docstring = parse(
... '''
... Short description
...
... Long description spanning multiple lines
... - First line
... - Second line
... - Third line
...
... :param name: description 1
... :param int priority: description 2
... :param str sender: description 3
... :raises ValueError: if name is invalid
... ''')
>>>
>>> docstring.long_description
'Long description spanning multiple lines\n- First line\n- Second line\n- Third line'
>>> docstring.params[1].arg_name
'priority'
>>> docstring.raises[0].type_name
'ValueError'
Contributing
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
docstring_parser-0.9.1.tar.gz
(14.9 kB
view details)
File details
Details for the file docstring_parser-0.9.1.tar.gz
.
File metadata
- Download URL: docstring_parser-0.9.1.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53749ad097c920687116ec91a5964fd92425e742503693ff44350645042b110c |
|
MD5 | f927ca72caefac5f94c4a074a4cb7e1c |
|
BLAKE2b-256 | 9898f5a49fffc1812eafb9c8003d7c4dd907e92094a107d552dde7570a52cfdd |