doc901
is a simple tool designed to ensure that Python methods and functions with a high cyclomatic complexity have proper docstrings. It uses ruff
to analyze complexity and missing docstring on the same line.
Maintaining clean and readable code is crucial. Methods or functions with high complexity can be challenging to understand, especially without documentation.
While ruff
provides rules for checking complexity (C901
) and missing docstrings on methods and functions (D102
and D103
, respectively), there is no built-in way to link them together. Enabling D10x
project-wide flagging all methods and functions without a docstring (even if they are simple and self-explanatory) could be overwhelming in large projects.
doc901
bridges this gap by flagging errors only when the complexity is enough to demand a docstring, so you can improve your code incrementally,
Of course, the name comes after the C901 rule code ;-)
The easiest way is via uvx
.
uvx doc901 path/to/file.py
To analyze an entire directory:
uvx doc901 path/to/directory/
The default allowed complexity is 4, meaning any function or method with McCabe 5 or more will require a docstring.
uvx doc901 --max-complexity=3 path/to/file.py
See --help
for more options.
To install the tool permanently:
uv tool install doc901
Imagine you have a file example.py
with the following methods:
def complex_function_without_docstring():
for i in range(10):
if i % 2 == 0:
for j in range(5):
print(i, j)
Running doc901
on this file:
python doc901.py example.py
Output:
example.py:1: `complex_function_without_docstring` is too complex (5 > 4). Add a docstring.
There are several ways to ignore errors:
- Since
ruff
is used under the hood, you can addnoqa: D102
ornoqa: D103
comments to the line that defines the method or function.
Alternatively, if you have a large codebase with many existing errors, you can use the --ignore
flag and pass a JSON file containing the errors to ignore.
You can generate this file by running the tool with the --json
flag:
uvx doc901 --json ... > ignored.jwill output a JSON file son
This will output a JSON file listing the errors found. You can then edit this file to remove any errors you don't want to ignore. For example, the output might look like this:
[
{
"path": "example.py",
"row": 8,
"name": "complex_method_without_docstring",
"complexity": 5
}
]
Then in your normal runs, pass this file to the --ignore
flag:
uvx doc901 --ignore ignored.json ...
Any violation that matches both the path and the name will be ignored. Note that the row
is intentionally omitted because the exact line where a function is defined might change frequently. You can also add additional metadata to the JSON file, such as the person responsible for fixing the issue.
Feel free to open issues or submit pull requests if you encounter bugs or have suggestions for improvement. This tool is lightweight but can be extended to cover more advanced checks.
This project is open-source and available under the MIT License. See the LICENSE file for details.