C/C++ header analysis toolkit with pluggable backends and writers for ctypes, Cython, CFFI, LuaJIT FFI, and more
Project description
headerkit
Parse C/C++ headers with libclang and emit output in any format.
Built-in writers produce ctypes, CFFI, Cython, LuaJIT FFI, JSON IR, and LLM-optimized prompt output, and the plugin system lets you add your own.
graph LR
A[C/C++ headers] --> B[backend]
B --> C[IR]
C --> D[writer]
D --> E[output]
Features
- One parse, many outputs: generate multiple bindings in a single pass with
-w ctypes:lib.py -w cython:lib.pxd - Plugin system: register third-party backends and writers via Python entry points
- Zero runtime dependencies: pure Python, nothing to install beyond headerkit itself
- Config file support:
.headerkit.tomlor[tool.headerkit]inpyproject.toml - Multi-header merging: pass multiple
.hfiles and they are merged into a single umbrella header - API diff reports: detect breaking changes between header versions with the
diffwriter
Installation
pip install headerkit
Requires Python 3.10+.
Then install libclang:
headerkit install-libclang
Or install it manually:
| Platform | Command |
|---|---|
| macOS | brew install llvm or Xcode Command Line Tools |
| Ubuntu | sudo apt install libclang-dev |
| Fedora | sudo dnf install clang-devel |
| Windows | winget install LLVM.LLVM or LLVM installer |
Supports LLVM 18, 19, 20, and 21.
Quick start
Given a header mylib.h:
typedef struct {
int x;
int y;
} Point;
Point* create_point(int x, int y);
void free_point(Point* p);
Generate CFFI cdef declarations:
$ headerkit mylib.h -w cffi
typedef struct Point {
int x;
int y;
} Point;
Point * create_point(int x, int y);
void free_point(Point * p);
Generate a Cython .pxd file:
$ headerkit mylib.h -w cython
cdef extern from "mylib.h":
ctypedef struct Point:
int x
int y
Point* create_point(int x, int y)
void free_point(Point* p)
Generate a complete ctypes binding module:
$ headerkit mylib.h -w ctypes
"""ctypes bindings generated from mylib.h."""
import ctypes
import ctypes.util
import sys
# ... library loading omitted for brevity ...
# ============================================================
# Structures and Unions
# ============================================================
class Point(ctypes.Structure):
_fields_ = [
("x", ctypes.c_int),
("y", ctypes.c_int),
]
# ============================================================
# Function Prototypes
# ============================================================
_lib.create_point.argtypes = [ctypes.c_int, ctypes.c_int]
_lib.create_point.restype = ctypes.POINTER(Point)
_lib.free_point.argtypes = [ctypes.POINTER(Point)]
_lib.free_point.restype = None
Multiple outputs in one pass:
headerkit mylib.h -w cython:mylib.pxd -w json:ir.json
With include paths and preprocessor defines:
headerkit mylib.h -I /usr/local/include -D VERSION=2 -w cffi
CLI reference
headerkit [options] FILE [FILE ...]
Flags
| Flag | Description |
|---|---|
-b NAME, --backend NAME |
Parser backend (default: libclang) |
-I DIR |
Add include directory (repeatable) |
-D MACRO[=VALUE] |
Define preprocessor macro (repeatable) |
--backend-arg ARG |
Pass extra argument to the backend (repeatable) |
-w WRITER[:FILE] |
Write output to a file, or omit :FILE for stdout (repeatable) |
--writer-opt WRITER:KEY=VALUE |
Pass an option to a writer (repeatable) |
--config PATH |
Load config from PATH instead of searching |
--no-config |
Skip all config file loading |
--version |
Print version and exit |
At most one -w flag may omit the output path. Multiple writers sending to stdout is an error.
Writers
| Writer | Output | Notes |
|---|---|---|
cffi |
CFFI cdef strings | Declarations for ffibuilder.cdef() |
ctypes |
Python module | Complete ctypes binding module |
cython |
.pxd file | Cython declaration file with C++ support |
diff |
JSON or Markdown | API compatibility report between two header versions |
json |
JSON | Full IR serialization |
lua |
LuaJIT FFI bindings | ffi.cdef() declarations for LuaJIT |
prompt |
Compact text | Token-optimized IR for LLM context windows |
Pass writer options with --writer-opt:
headerkit mylib.h -w cffi --writer-opt cffi:exclude_patterns=^__
headerkit mylib.h -w ctypes:mylib.py --writer-opt ctypes:lib_name=mylib
Config file
headerkit searches from the current directory upward for .headerkit.toml, or for a
[tool.headerkit] section in pyproject.toml. Use --no-config to skip this.
# .headerkit.toml
backend = "libclang"
writers = ["cffi"]
include_dirs = ["/usr/local/include"]
plugins = ["mypkg.headerkit_plugin"]
[writer.cffi]
exclude_patterns = ["^__", "^_internal"]
[writer.ctypes]
lib_name = "mylib"
Command-line flags override config file values.
Plugins
Register third-party backends and writers via Python entry points:
# In your package's pyproject.toml
[project.entry-points."headerkit.backends"]
mybackend = "mypkg.backend:MyBackend"
[project.entry-points."headerkit.writers"]
mywriter = "mypkg.writer:MyWriter"
Or load plugins explicitly from the config file:
# .headerkit.toml
plugins = ["mypkg.headerkit_plugin"]
Python API
from headerkit.backends import get_backend
from headerkit.writers import get_writer
backend = get_backend("libclang")
header = backend.parse('#include "mylib.h"', "wrapper.h", include_dirs=["/path/to/include"])
writer = get_writer("cffi")
print(writer.write(header))
Full documentation, guides, and API reference: axiomantic.github.io/headerkit
Development
git clone https://github.com/axiomantic/headerkit.git
cd headerkit
pip install -e '.[dev]'
pytest
License
This project is licensed under the MIT License.
The vendored clang Python bindings in headerkit/_clang/v*/ are from the
LLVM Project and are licensed under the
Apache License v2.0 with LLVM Exceptions.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file headerkit-0.9.0.tar.gz.
File metadata
- Download URL: headerkit-0.9.0.tar.gz
- Upload date:
- Size: 429.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e854fe29dcda6e6b664b5c247dc7209d11d969c49ec07aab3afcbef56ae94a1a
|
|
| MD5 |
88bc32781c4da5ad54cd066a03420923
|
|
| BLAKE2b-256 |
b60ece3b14e1b6894bb37165c69c1837dcc75da7c1ff5b97a2b51df0ee400ad1
|
Provenance
The following attestation bundles were made for headerkit-0.9.0.tar.gz:
Publisher:
release.yml on axiomantic/headerkit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
headerkit-0.9.0.tar.gz -
Subject digest:
e854fe29dcda6e6b664b5c247dc7209d11d969c49ec07aab3afcbef56ae94a1a - Sigstore transparency entry: 1175363045
- Sigstore integration time:
-
Permalink:
axiomantic/headerkit@d28a081420f101db2a3f31a5184895703c470a31 -
Branch / Tag:
refs/tags/v0.9.0 - Owner: https://github.com/axiomantic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d28a081420f101db2a3f31a5184895703c470a31 -
Trigger Event:
push
-
Statement type:
File details
Details for the file headerkit-0.9.0-py3-none-any.whl.
File metadata
- Download URL: headerkit-0.9.0-py3-none-any.whl
- Upload date:
- Size: 262.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0aa338a7142a599793adadf380efc0eb71a7cfecd046957e1d24dc55367daa66
|
|
| MD5 |
82f41385272222709a77df3ca6055525
|
|
| BLAKE2b-256 |
269f77b88baa56512f433b074c9dee40b9f8110394d514ee9d45b11d70c2a67a
|
Provenance
The following attestation bundles were made for headerkit-0.9.0-py3-none-any.whl:
Publisher:
release.yml on axiomantic/headerkit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
headerkit-0.9.0-py3-none-any.whl -
Subject digest:
0aa338a7142a599793adadf380efc0eb71a7cfecd046957e1d24dc55367daa66 - Sigstore transparency entry: 1175363051
- Sigstore integration time:
-
Permalink:
axiomantic/headerkit@d28a081420f101db2a3f31a5184895703c470a31 -
Branch / Tag:
refs/tags/v0.9.0 - Owner: https://github.com/axiomantic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d28a081420f101db2a3f31a5184895703c470a31 -
Trigger Event:
push
-
Statement type: