Skip to main content

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

ci documentation pypi version gitpod gitter

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.

Griffe, pronounced "grif" (/ɡʁif/), is a french word that means "claw", but also "signature" in a familiar way. "On reconnaît bien là sa griffe."

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 an overloads attribute to Function, to store the list of @overload-decorated functions, because currently different members of a same object cannot have the same names.
  • 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

griffe-0.12.6.tar.gz (71.1 kB view details)

Uploaded Source

Built Distribution

griffe-0.12.6-py3-none-any.whl (68.8 kB view details)

Uploaded Python 3

File details

Details for the file griffe-0.12.6.tar.gz.

File metadata

  • Download URL: griffe-0.12.6.tar.gz
  • Upload date:
  • Size: 71.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.11.1 pkginfo/1.8.1 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for griffe-0.12.6.tar.gz
Algorithm Hash digest
SHA256 92032ca2a6064dc55d420e43ae50910ce45c8e8effb236f89238aae6a158439b
MD5 71159b3970a1a393e15f9b79b5dc44a5
BLAKE2b-256 1fcc5087c4c45a329b48d0a55b19e0554036f2c2467fde1a18f978d6aec86a96

See more details on using hashes here.

File details

Details for the file griffe-0.12.6-py3-none-any.whl.

File metadata

  • Download URL: griffe-0.12.6-py3-none-any.whl
  • Upload date:
  • Size: 68.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.11.1 pkginfo/1.8.1 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for griffe-0.12.6-py3-none-any.whl
Algorithm Hash digest
SHA256 08415a98754102f976e7e62499b88617fd99ed7b6efc12dc1074d4ffd0dbf4fe
MD5 0e753c9ea2e076680716ff87cde5f6d6
BLAKE2b-256 fbd269d2243e7a84fb1262f9068f8b0d5348112119be40a176aaaf9b69e3a7b8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page