Signatures for entire Python programs. Extract the structure, the frame, the skeleton of your project, to generate API documentation or find breaking changes in your API.
Project description
griffe
Signatures for entire Python programs. Extract the structure, the frame, the skeleton of your project, to generate API documentation or find breaking changes in your API.
:warning: Work in progress!
Requirements
Griffe requires Python 3.8 or above.
To install Python 3.8, I recommend using pyenv
.
# install pyenv
git clone https://github.com/pyenv/pyenv ~/.pyenv
# setup pyenv (you should also put these three lines in .bashrc or similar)
export PATH="${HOME}/.pyenv/bin:${PATH}"
export PYENV_ROOT="${HOME}/.pyenv"
eval "$(pyenv init - bash)"
# install Python 3.8
pyenv install 3.8.12
# make it available globally
pyenv global system 3.8.12
Installation
With pip
:
python3.8 -m pip install griffe
With pipx
:
python3.8 -m pip install --user pipx
pipx install --python python3.8 griffe
Usage
On the command line, pass the names of packages to the griffe
command:
$ griffe httpx fastapi
[
{
"name": "httpx",
...
}
]
See the Usage section for more examples.
With Python:
from griffe.loader import GriffeLoader
griffe = GriffeLoader()
fastapi = griffe.load_module("fastapi")
See the Usage section for more examples.
Todo
- Design:
- Navigable trees (nodes and data)
- Extension system
- Performance (loading data, no serialization)
- sync: ~60 KLoC/s, ~330 files/s
- async: ~100 KLoC/s, ~550 files/s
- Loader/Visitor:
- Docstrings
- Line numbers
- Parsing: see below
- Labels
- Modules
- Classes
- Bases (parent classes)
- Merging inherited members into class. Needs to be able to post-process classes, and to compute their MRO (C3Linearization, see docspec/pydocspec issues).
- Merging
__init__
method's docstring into class' docstring - Decorators
- Functions
- Arguments
- Return annotation (names, constants, attributes)
- Decorators
- Support for
typing.overload
decorator. We'll probably need to add anoverloads
attribute toFunction
, to store the list of@overload
-decorated functions, because currently different members of a same object cannot have the same names.
- Data (variables/attributes)
- Docstrings
- Value
- Name resolution
- Per-object scope
- Load external packages resursively (inheritance)
- Resolve everything that is an
ast.Name
- Resolve names inside more complex expressions? Calls, exprs, etc.
- Lines collection (lines for each module)
- Docstrings
- Extension system
- Node-visiting extensions
- Post-processing extensions
- Docstrings parsers
- Structured format
- Styles
- RST
- Numpy
- New Markdown-based format? For graceful degradation
- Serializer:
- JSON
- Nested
- Flat
- JSON
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 griffe-0.2.0.tar.gz
.
File metadata
- Download URL: griffe-0.2.0.tar.gz
- Upload date:
- Size: 23.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 596bd8ecfcf2732b15799fed37e22056f7c7418dfa9f95774d1f348c1223df57 |
|
MD5 | 04f0aa55539a27c3d1708d34875f30bb |
|
BLAKE2b-256 | 978d6e86db143f29829cab1980dfa4b3dc39cee7cfff346f96039f1d33711da3 |
File details
Details for the file griffe-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: griffe-0.2.0-py3-none-any.whl
- Upload date:
- Size: 26.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 500066112a951d8097bbab4a1a090ea14ffc2f60369bbc804b25b5497848ffca |
|
MD5 | 469dc1c2dc8942c1cd6fe835fc130261 |
|
BLAKE2b-256 | e09e58041940b6b1c2ebe4c53476fca3ca8c40b8f2388e075cc6da02b320a07e |