Anthropic Auto Docstrings Generator, using updated asynchronous methods.
Project description
Anthropicautodocstrings is a command-line tool with the following key features:
- Updates the docstrings in Python files using the Anthropic API.
- Can process a single file or a directory of files, including all subdirectories.
Anthropicautodocstrings uses the Anthropic API to generate docstrings, so these are not guaranteed to be perfect. However, they are a good starting point for writing your own docstrings.
The claude-instat-1.2 model is used to generate the docstrings. This is fast af. The version this was forked from is slow in comparison. To increase raw speed! This runs asyncronously
Anthropicautodocstrings will work best for code that already has good type hints. Without type hints, the Anthropic API will have to guess input and return types, which may not be accurate.
Requirements
- Python 3.8+
- A valid anthropic api key.
Installation
To install the dependencies for this tool, run the following command:
$ pip install anthropicautodocstrings
Usage
To use this tool, run the following commands:
$ export ANTHROPIC_API_KEY=1234567890
$ autodocstrings INPUT `
[--replace-existing-docstrings] `
[--skip-constructor-docstrings] `
[--exclude-directories EXCLUDE_DIRECTORIES] `
[--exclude-files EXCLUDE_FILES]
Where INPUT is a Python file or directory containing Python files to update the docstrings in, API_KEY is your Anthropic API key, and the optional flags --replace-existing-docstrings and --skip-constructor-docstrings can be used to skip updating docstrings for constructors (init methods) and replacing existing docstirngs. EXCLUDE_DIRECTORIES and EXCLUDE_FILES are comma-separated lists of directories and files to exclude from the update.
Examples
Update the docstrings in all Python files in the my_code directory:
$ aads cool_code/
Update the docstrings in the my_file.py file:
$ aads awesome_script.py
Update the docstrings in all Python files in the my_code directory and replace existing ones:
$ aads cool_code/ --replace-existing-docstrings
Update the docstrings in all Python files in the my_code directory, but skip updating docstrings for class constructors (init methods):
$ aads cool_code/ --skip-constructor-docstrings
Update the docstrings in all Python files in the my_code directory, but exlcude the exclude_dir directory and the exclude_file_1.py and exclude_file_2.py files:
$ aads my_code/ --exclude-directories exclude_dir --exclude-files exclude_file_1.py,exclude_file_2.py
Limitations
- The python functions are being passed to the Anthropic API as independent code blocks. This means that the docstrings are not aware of the context of the function. If functions are written independently of each other, then this should not be a problem.
The format of the docstring is not always consistent, so you may need to manually fix some of the docstrings. You shouldn't use this in a ci/cd pipeline.Input length is limited to the maximum input length of the Anthropic API. This is currently 2048 characters. If your function is larger than this then the docstring will not be updated.Anthropic API can be slow.---# anthropicautodocstrings
anthropicautodocstrings
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
File details
Details for the file anthropicautodocstrings-0.0.3.tar.gz
.
File metadata
- Download URL: anthropicautodocstrings-0.0.3.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.3 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3dec9b7566eb563ca4a6e47c1f0532370b846cf5d3b5a90a5dcab97f9b89caa |
|
MD5 | 31fadf59ab1e94bcda95cd78935971f2 |
|
BLAKE2b-256 | 23cd489b988e4de15dd8a013a888573ae3e76a7771807d3810bee5d8f218ac6a |
File details
Details for the file anthropicautodocstrings-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: anthropicautodocstrings-0.0.3-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.3 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bd36c006bfd7f068897aada064a84ccdf10bfe482af3eba396df96c4d9aa26e |
|
MD5 | 920372f051990260aa95bd9da85f760b |
|
BLAKE2b-256 | 60a3f5465fa3b10850f7f9af60738591c79df48dce107dd132e8995c41fb4070 |