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.
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 (except
__init__
) -
--skipinit, -i - Ignore all
__init__
methods -
--skipfiledoc, -f - Ignore module docstrings (at the top of files)
-
--skip-private, -P - Ignore private functions (starting with a single underscore)
-
--skipclassdef, -c - Ignore docstrings of class definitions
-
--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.)
-
--failunder=<int|float>, -F <int|float> - Fail if under a certain percentage of coverage (default: 100.0)
-
--docstr-ignore-file=<filepath>, -d <filepath> - 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.*
-
--badge=<filepath>, -b <filepath> - Generate a docstring coverage percent badge as an SVG saved to a given filepath
- Include the badge in a repo's README using
[![docstr_coverage](<filepath/of/your/saved/badge.svg>)](https://github.com/HunterMcGushion/docstr_coverage)
, where<filepath/of/your/saved/badge.svg>
is the path provided to the--badge
option
- Include the badge in a repo's README using
-
--followlinks, -l - Follow symlinks
-
--percentage-only, -p - Output only the overall coverage percentage as a float, silencing all other logging
-
--help, -h - Display CLI options
Overriding by Comments
Note that docstr-coverage
can not parse
dynamically added documentation (e.g. through class extension).
Thus, some of your code which deliberately has no docstring might be counted as uncovered.
You can override this by adding either #docstr_coverage:inherited
(intended for use if a docstring is provided in the corresponding superclass method)
or a generic excuse with a reason, like #docstr_coverage:excused `My probably bad excuse`
.
These have to be stated right above any class or function definition
(or above the functions annotations, if applicable).
Such class or function would then be counted as if they had a docstring.
# docstr-coverage:excused `no one is reading this anyways`
class FooBarChild(FooBar):
# docstr-coverage:inherited
def function(self):
pass
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>,skip_private
<bool>,verbose
<int (0-3)> * For more info onget_docstring_coverage
and its parameters, please see its documentation
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
Contributing
To install locally, run:
pip install -e .
You will need to install the development dependencies:
python -m venv venv
source venv/bin/activate
pip install -e ".[test,lint]"
Make sure to run tests:
pytest
Be nice.
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.4.0.tar.gz
.
File metadata
- Download URL: docstr_coverage-1.4.0.tar.gz
- Upload date:
- Size: 17.6 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 | e3fdb27f74a85167c5c0d48c97652d177f8105d170a0b4e58500d452974ef148 |
|
MD5 | 130d48d57c362eb6715e5e96e896d4ca |
|
BLAKE2b-256 | ee1135e08a6c5635f17534eec0be0927450ee918222a913a4b07ee065dcfe54a |
Provenance
File details
Details for the file docstr_coverage-1.4.0-py3-none-any.whl
.
File metadata
- Download URL: docstr_coverage-1.4.0-py3-none-any.whl
- Upload date:
- Size: 15.1 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 | 2592429b0332f3d89aa83f5dae120b1e170f2cf73aba60339be4b806b334a5ba |
|
MD5 | c170fa8a15075bee4096fec39eb8ea4b |
|
BLAKE2b-256 | 3d800ad06224e3ce3cfba8802ff4543dcb8c5204d1b627a13fadf0dbe64008a2 |