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.7 or above.
To install Python 3.7, 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 -)"
# install Python 3.7
pyenv install 3.7.12
# make it available globally
pyenv global system 3.7.12
Installation
With pip
:
pip install griffe
With pipx
:
python3.7 -m pip install --user pipx
pipx install 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
- Visitor/Inspector:
- Labels
- Attribute: ?
- Function: ?
- Class: ?
- Module: ?
- 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 (could be an extension) - 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. - Support for wildcard imports
- Labels
- Extensions
- Post-processing extensions
- Third-party libraries we could provide support for:
- Django support
- Marshmallow support
- Pydantic support
- Docstrings parsers
- epydoc
- New Markdown-based format? For graceful degradation
- Serializer:
- Flat JSON
- JSON schema
- API diff:
- Mecanism to cache APIs? Should users version them, or store them somewhere (docs)?
- Ability to return warnings (things that are not backward-compatibility-friendly)
- List of things to consider for warnings
- Multiple positional-or-keyword parameters
- Public imports in public modules
- Private things made public through imports/assignments
- Too many public things? Generally annoying. Configuration?
- Ability to compare two APIs to return breaking changes
- List of things to consider for breaking changes
- Changed position of positional only parameter
- Changed position of positional or keyword parameter
- Changed type of parameter
- Changed type of public module attribute
- Changed return type of a public function/method
- Added parameter without a default value
- Removed keyword-only parameter without a default value, without **kwargs to swallow it
- Removed positional-only parameter without a default value, without *args to swallow it
- Removed positional-or_keyword argument without a default value, without *args and **kwargs to swallow it
- Removed public module/class/function/method/attribute
- All of the previous even when parent is private (could be publicly imported or assigned somewhere), and later be smarter: public assign/import makes private things public!
- Inheritance: removed base, or added/changed base that changes MRO
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.9.0.tar.gz
.
File metadata
- Download URL: griffe-0.9.0.tar.gz
- Upload date:
- Size: 63.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.10.0 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1e59e2a928d4da6c9c4f7b728f5d15912ac19b3ca2ef1f2ce468e66c0c85d9c |
|
MD5 | dce78a564a14f2fbf738357224937020 |
|
BLAKE2b-256 | 97676905162d0aeccc0a65143c6fda9d6510d04561725f6df7df71457a053c3d |
File details
Details for the file griffe-0.9.0-py3-none-any.whl
.
File metadata
- Download URL: griffe-0.9.0-py3-none-any.whl
- Upload date:
- Size: 62.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.10.0 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4ed816980600fdd973e38992c2976325cf29826e27fbbf749858df7e3fe8873 |
|
MD5 | fd971b737f2563be9365fab94aa9f89d |
|
BLAKE2b-256 | 38c997488c918f96bcc9e57bbab3a205eca04f05a10d237ce76c4dea3e911fc5 |