Utility for examining python source files to ensure proper documentation. Lists missing docstrings, and calculates overall docstring coverage percentage rating
Project description
Docstr-Coverage
If the health of your documentation is in dire straits, docstr-coverage
will see you now.
docstr-coverage
is a simple tool that lets you measure your Python source code's
docstring coverage. It can show you which of your functions,
classes, methods, and modules don't have docstrings. It also provide statistics about overall docstring coverage for individual
files, and for your entire project.
- Source: https://github.com/HunterMcGushion/docstr_coverage
- Documentation: https://docstr-coverage.readthedocs.io
Example
>>> HunterMcGushion$ docstr-coverage /docstr_coverage/
File: "docstr_coverage/setup.py"
- No module docstring
- No docstring for `readme`
Needed: 2; Found: 0; Missing: 2; Coverage: 0.0%
File: "docstr_coverage/docstr_coverage/__init__.py"
- No module docstring
Needed: 1; Found: 0; Missing: 1; Coverage: 0.0%
File: "docstr_coverage/docstr_coverage/coverage.py"
- No docstring for `DocStringCoverageVisitor.__init__`
Needed: 11; Found: 10; Missing: 1; Coverage: 90.9%
Overall statistics for 3 files:
Docstrings needed: 14; Docstrings found: 10; Docstrings missing: 4
Total docstring coverage: 71.4%; Grade: Very good
How Do I Use It?
Command-line Tool
General usage is: docstr-coverage <path to dir or module> [options]
To test a single module, named some_module.py
, run:
$ docstr-coverage some_module.py
To test a directory (recursively), just supply the directory some_project/src
instead:
$ docstr-coverage some_project/src
Options:
-
--skipmagic, -m - Ignore all magic methods (like
__init__
, and__str__
) -
--skipfiledoc, -f - Ignore module docstrings (at the top of files)
-
--exclude=<regex>, -e <regex> - Filepath pattern to exclude from analysis
- To exclude the contents of a virtual environment
env
and yourtests
directory, run:$ docstr-coverage some_project/ -e "env/*|tests/*"
- To exclude the contents of a virtual environment
-
--verbose=<level>, -v <level> - Set verbosity level (0-3)
- 0 - Silence
- 1 - Print overall statistics
- 2 - Also print individual statistics for each file
- 3 - Also print missing docstrings (function names, class names, etc.)
-
--docstr-ignore-file=, -d - Filepath containing list of patterns to ignore. Patterns are (file-pattern, name-pattern) pairs
- File content example:
SomeFile method_to_ignore1 method_to_ignore2 method_to_ignore3 FileWhereWeWantToIgnoreAllSpecialMethods __.+__ .* method_to_ignore_in_all_files a_very_important_view_file ^get$ ^set$ ^post$ detect_.* get_val.*
Package in Your Project
You can also use docstr-coverage
as a part of your project by importing it thusly:
from docstr_coverage import get_docstring_coverage
my_coverage = get_docstring_coverage(['some_dir/file_0.py', 'some_dir/file_1.py'])
Arguments:
- Required arg:
filenames
<list of string filenames> - Optional kwargs:
skip_magic
<bool>,skip_file_docstring
<bool>,verbose
<int (0-3)>- For more info on
get_docstring_coverage
and its parameters, please see its documentation
- For more info on
Results:
get_docstring_coverage
returns two dicts: 1) stats for each file, and 2) total stats.
For more info, please see the get_docstring_coverage
documentation
Why Should I Use It?
- Thorough documentation is important to help others (and even yourself) understand your code
- As a developer, improve your code's maintainability for when you need to make updates and fix bugs
- As a user, instantly know how easy it's going to be to understand a new library
- If its documentation coverage is low, you may need to figure a lot out for yourself
Installation
pip install docstr-coverage
If you like being on the cutting-edge, and you want all the latest developments, run:
pip install git+https://github.com/HunterMcGushion/docstr_coverage.git
Special Thanks
Thank you to Alexey "DataGreed" Strelkov, and James Harlow for doing all the hard work.
docstr-coverage
simply revives and brings their efforts to Python 3. See 'THANKS.txt' for more information.
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
File details
Details for the file docstr_coverage-1.0.5.tar.gz
.
File metadata
- Download URL: docstr_coverage-1.0.5.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.4.2 requests/2.22.0 setuptools/38.6.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd0ecf2c106b47ce2fa9b37871cc7b1f545417b3ff15c3513d11c1afd1e2ba57 |
|
MD5 | e8c52cd88b822fab148374ee457f3afa |
|
BLAKE2b-256 | 978f1aa3a9e939825a45859f1a4c7c9ffe67b998a01a4a24c50db76c05855954 |
Provenance
File details
Details for the file docstr_coverage-1.0.5-py3-none-any.whl
.
File metadata
- Download URL: docstr_coverage-1.0.5-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.0.0 pkginfo/1.4.2 requests/2.22.0 setuptools/38.6.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c73373246f3177f64358498b6c417b554d321d443fdbe78c6e83e328ed7fb90 |
|
MD5 | 58537743349e209a2af486d97a0ae38d |
|
BLAKE2b-256 | 7ecee105504fde559e2610a3309727553e20a3847b07721e67f9e18db26f733d |