Parse Python docstrings in reST, Google and Numpydoc format
Project description
docstring_parser_fork
This is a fork of docstring_parser.
This fork fixes bugs that the upstream library has not fixed, and it also offers additional functionalities. To inspect the difference between this fort and the upstream, go to CHANGELOG.md and read the entries that start with "(Fork)".
Parse Python docstrings. Currently support ReST, Google, Numpydoc-style and Epydoc 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'
Read API Documentation.
Installation
Installation using pip
pip install docstring_parser_fork
# or if you want to install it in a virtual environment
python -m venv venv # create environment
source venv/bin/activate # activate environment
python -m pip install docstring_parser_fork
Installation using conda
- Download and install miniconda or anaconda
- Install the package from the conda-forge channel via:
conda install -c conda-forge docstring_parser
- or create a new conda environment via
conda create -n my-new-environment -c conda-forge docstring_parser
Contributing
To set up the project:
pip install --user poetry
git clone https://github.com/rr-/docstring_parser.git
cd docstring_parser
poetry install
poetry run pre-commit install
To run tests:
poetry run pytest
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
Close
Hashes for docstring_parser_fork-0.0.8.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59d3b00d42ba9f4e229a7df7e1f6fc742845f88a1190973cc33ba336a5405425 |
|
MD5 | 98185050378fd7e91c1cb1968946591b |
|
BLAKE2b-256 | fcad84439fbde3c064202c39bc794314257a1cbc24b19d24f8fa28d50eedfbe5 |
Close
Hashes for docstring_parser_fork-0.0.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88098ae01b0909b241954ad2c50c0c29ec2292223366a540bfd68332be8fd595 |
|
MD5 | fd46ba95df78e8d81a1e22a2aabf4746 |
|
BLAKE2b-256 | f799e5ea146a10f6608a69073f9b2b5d2dd8cb746abe66560c474f9176772aaa |