Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/woodruffw/abi3info
Programmatic access to Python's limited API and abi3 information
https://github.com/woodruffw/abi3info
cpython-api cpython-extensions cpython-internals python
Last synced: 19 days ago
JSON representation
Programmatic access to Python's limited API and abi3 information
- Host: GitHub
- URL: https://github.com/woodruffw/abi3info
- Owner: woodruffw
- License: mit
- Created: 2022-09-19T01:37:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-13T16:43:08.000Z (26 days ago)
- Last Synced: 2024-12-19T10:17:27.969Z (21 days ago)
- Topics: cpython-api, cpython-extensions, cpython-internals, python
- Language: Python
- Homepage: https://pypi.org/project/abi3info/
- Size: 323 KB
- Stars: 8
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
abi3info
========[![CI](https://github.com/woodruffw/abi3info/actions/workflows/ci.yml/badge.svg)](https://github.com/woodruffw/abi3info/actions/workflows/ci.yml)
[![PyPI version](https://badge.fury.io/py/abi3info.svg)](https://pypi.org/project/abi3info)abi3info exposes information about CPython's "limited API" (including the
stable ABI, called `abi3`) as a Python library.## Installation
abi3info is available via `pip`:
```console
$ pip install abi3info
```## Usage
abi3info exposes limited API and stable ABI information in the form of a set
of top-level dictionaries, namely:```python
import abi3infoabi3info.FEATURE_MACROS
abi3info.MACROS
abi3info.STRUCTS
abi3info.TYPEDEFS
abi3info.FUNCTIONS
abi3info.DATAS
```Each of these is a mapping of a name (either as `str` or `Symbol`) to
a data model describing the kind of item (e.g. `FeatureMacro` or `Function`).[See the generated documentation](https://woodruffw.github.io/abi3info) for
more details, including comprehensive type hints and explanations of each data
model.[See also the `stable_abi.toml` file](./codegen/stable_abi.toml), taken from
the CPython sources, which describes each model and their semantics.### Examples
Get information about a particular function:
```python
from abi3info import FUNCTIONS
from abi3info.models import Symbolfunc = FUNCTIONS[Symbol("_Py_NegativeRefcount")]
print(func.symbol, func.added, func.ifdef, func.abi_only)
```Get information about the feature macros that control the limited API:
```python
from abi3info import FEATURE_MACROSprint(fm for fm in FEATURE_MACROS.values())
```## Licensing
abi3info is licensed under the MIT license.
abi3info is partially generated from metadata retrieved from the
[CPython sources](https://github.com/python/cpython/blob/main/Misc/stable_abi.toml),
which is licensed under the [PSF license](https://docs.python.org/3/license.html#psf-license).