The sweet way to catch outdated docstrings
Project description
Dolce
Because broken docs leave a bitter taste.
Dolce is a tool designed to help you maintain high-quality docstrings in your Python code. It leverages Large Language Models (LLMs) to ensure that your docstrings are consistent with your code.
Installation
pip install pydolce
Usage
dolce check # Check docstrings in all python files in the current directory and subdirectories
dolce check src # Check in specific directory
dolce check src/myproject/main.py # Check in specific file
Example
dolce check tests/samples
outputs:
[ ERROR ] tests/samples/wrong_descr.py:1 add
- DOC401: Docstring states the function does something that the code does not do. (The docstring summary 'Multiply two integers' does not match the code's behavior of adding integers.)
[ ERROR ] tests/samples/behavior.py:4 post_multiplication
- DOC401: Docstring states the function does something that the code does not do. (The docstring summary says 'Add two integers' but the code performs multiplication.)
- DOC402: Docstring omits a critical behavior that the code performs. (The code makes an HTTP POST request (critical behavior) but the docstring does not mention this.)
[ ERROR ] tests/samples/typos.py:1 add
- DOC301: Docstring description contains spelling errors. (Typo in DESCRIPTION: 'intgers' instead of 'integers')
- DOC302: Docstring parameter description contains spelling errors. (Typo in PARAM_DESCRIPTION: 'Te' instead of 'The')
[ ERROR ] tests/samples/simple.py:1 foo
- DOC101: Function is missing a docstring.
[ ERROR ] tests/samples/simple.py:5 fibonacci
- DOC203: Missing parameter in documention (Parameter 'n' in signature but not documented.)
[ OK ] tests/samples/simple.py:17 subtract
Summary:
✓ Correct: 1
✗ Incorrect: 5
Configure
Right now dolce can be configured via pyproject.toml file. You can specify which rules to check and which to ignore. By default it will check all rules.
[tool.dolce]
target = [
# Set of rules to check
"DOC101",
]
disable = [
# Set of rules to ignore
"DOC101",
]
Quick reference of available rules
dolce rules
- DOC101: Function is missing a docstring.
- DOC102: Class is missing a docstring.
- DOC103: Class docstring has invalid syntax.
- DOC201: Duplicate parameters in docstring.
- DOC202: Documented parameter does not exist
- DOC203: Missing parameter in documention
- DOC204: Parameter description is missing
- DOC205: Return missing from docstring
- DOC206: Parameter type missing
- DOC206: Invalid parameter type
- DOC204: Invalid return type LLM based rules:
- DOC301: Docstring description contains spelling errors.
- DOC302: Docstring parameter description contains spelling errors.
- DOC303: Docstring return description contains spelling errors.
- DOC401: Docstring states the function does something that the code does not do.
- DOC402: Docstring omits a critical behavior that the code performs.
Use of LLM
By default dolce will try to run locally qwen3:8b model via ollama provider. You can visit the Ollama site for installation instructions.
qwen3:8b has relatively good performance while fitting in an RTX 4060 GPU (8GB VRAM). However, if you want to use a different model or provider you can configure the default options in the pyproject.toml of your project like this:
[tool.dolce]
url = "http://localhost:11434"
model = "codestral"
provider = "ollama"
api_key = "YOUR_API_KEY_ENVIROMENT_VAR"
To be implemented
- Add cache system to avoid re-checking unchanged code
- Support for ignoring specific code segments, files, directories, etc
- Support parallel requests ... much more!
📦 For Developers
Make sure you have the following tools installed before working with the project:
Getting Started
Install dependencies into a local virtual environment:
uv sync --all-groups
This will create a .venv folder and install everything declared in pyproject.toml.
Then, you can activate the environment manually depending on your shell/OS:
-
Linux / macOS (bash/zsh):
source .venv/bin/activate
-
Windows (PowerShell):
.venv\Scripts\Activate.ps1
-
Windows (cmd.exe):
.venv\Scripts\activate.bat
Running
uv run dolce check path/to/your/code
Linting, Formatting, and Type Checking
make qa
Runs Ruff for linting and formatting, and Mypy for type checking.
Running Unit Tests
Before running tests, override any required environment variables in the .env.test file.
make test
Executes the test suite using Pytest.
Building the Project
make build
Generates a distribution package inside the dist/ directory.
Cleaning Up
make clean
Removes build artifacts, caches, and temporary files to keep your project directory clean.
Building docs
make docs
Generates the project documentation inside the dist/docs folder.
When building the project (make build) the docs will also be generated automatically and
included in the distribution package.
🤝 Contributing
Contributions are welcome! Please ensure all QA checks and tests pass before opening a pull request.
🚀 Project starter provided by Cookie Pyrate
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pydolce-0.1.3.tar.gz.
File metadata
- Download URL: pydolce-0.1.3.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d85746a73f29f723765acac33f6d0b0da6e80eb61b778de4d2053c17aabfa12
|
|
| MD5 |
7ea091fc75e23ecfbb58865493171c26
|
|
| BLAKE2b-256 |
ab3d3900b51cf0970886e40870492c517372b1f2c111e42c73fb1082bc438ee3
|
File details
Details for the file pydolce-0.1.3-py3-none-any.whl.
File metadata
- Download URL: pydolce-0.1.3-py3-none-any.whl
- Upload date:
- Size: 18.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9037d80796239187ebb6196450f81c4296def253179424544eaa8bbc14ce9f8f
|
|
| MD5 |
f3133966080a920e9978f1e2b0801b01
|
|
| BLAKE2b-256 |
f143e6b03a4df0a1b98c5c58e31aadefaafefb3e61f76defa996bd11f22d4658
|