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 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.

: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
  • Loader/Visitor:
    • Docstrings
      • Line numbers
      • Parsing: see below
    • Labels
      • Attribute: ?
      • Function: ?
      • Class: ?
      • Module: ?
    • 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
      • Parameters
      • Return annotation (names, constants, attributes)
      • Decorators
      • 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.
    • Attributes (variables/constants)
      • Docstrings
      • Value
    • Name resolution
      • Per-object scope
      • Load external packages resursively (indirections/aliases)
      • Resolve everything that is an ast.Name
      • Resolve names inside more complex expressions? Calls, exprs, etc.
    • Lines collection (lines for each module)
  • Extension system
    • Node-visiting extensions
    • Post-processing extensions
  • Docstrings parsers
    • Structured format
    • Styles
      • Google
      • RST
      • Numpy
      • epydoc
      • New Markdown-based format? For graceful degradation
  • Serializer:
    • JSON
      • Nested
      • Flat
  • 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.3.0.tar.gz (47.8 kB view details)

Uploaded Source

Built Distribution

griffe-0.3.0-py3-none-any.whl (46.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: griffe-0.3.0.tar.gz
  • Upload date:
  • Size: 47.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for griffe-0.3.0.tar.gz
Algorithm Hash digest
SHA256 d0dfc5833ec98230dc642f5159fb798c6ce00f0e5dc0d5c2a624f62ae76029f2
MD5 c053cb1e26da305da981c6fdb4ded14c
BLAKE2b-256 f01c80720a257b683ef2caf3cad7ddc638fe65c121eabafb37d51b6491d86907

See more details on using hashes here.

File details

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

File metadata

  • Download URL: griffe-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 46.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for griffe-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 991f6c77d728e0f8ff63a3812ad8d7293d1c1b8c7e08b276f70238e92aaae855
MD5 ba1429d54fffd6255b033ffed83213dd
BLAKE2b-256 e3a3a08089ca0a42e8645e2866721e357f7753c44782dd9dd9caf9936d50241c

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page