Parse Python docstrings in reST, Google and Numpydoc format
Project description
docstring_parser_fork
This is a fork of docstring_parser. The reason I'm forking that is to quickly get some bug fixes out for users of pydoclint.
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.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80dc6da5384a5f6b205d6a3ab8b438721406c0ec7f9f8aba23de8f78c51a7d4d |
|
MD5 | feef18d252c71941b420859195e1272b |
|
BLAKE2b-256 | 9568ebde797ffa83fda067574f643cb5773facedf00e576304b6f83140bdc4ec |
Close
Hashes for docstring_parser_fork-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 530b175371df5c5840782c0f44e1ffa7037f9340c6a23e583ae34e71ebd70b18 |
|
MD5 | 07fc12cc8dd434dde4575377a13c38e5 |
|
BLAKE2b-256 | 2ddfcedd9a4805cba90e27fffb2e5c2a13f0428afc0d05ea86637b4ed539f40b |