Automatic schema migration and version control for 51 schema languages and 248 programming languages
Project description
panproto
Python bindings for panproto, a schematic version-control system that treats every supported schema language (around 50, including ATProto, OpenAPI, AsyncAPI, Avro, Protobuf, JSON Schema, and Kubernetes CRDs) as views over a single graph format.
The bindings are built with PyO3 against the Rust core directly: no WASM runtime, no subprocess, no shelling out. The full panproto surface is available from Python, including the schema/migration/lens/VCS pipelines and the tree-sitter-driven parser for ~250 programming languages.
Status
panproto is pre-1.0. The 0.x series carries arbitrary breaking changes
between minor versions; the panproto package version tracks the
workspace version on every release. Python 3.13+ is required (the
wheels are abi3 and forward-compatible across newer Python releases).
Installation
pip install panproto
Wheels are published on PyPI for Linux x86_64/aarch64, macOS arm64+x86_64, and Windows x86_64. No Rust toolchain is required to install.
Synopsis
import panproto
# Pick a built-in protocol, or define your own with `Protocol.from_theories`.
atproto = panproto.get_builtin_protocol("atproto")
# Build a schema using the fluent builder.
v1 = atproto.schema()
v1.vertex("post", "record", "app.bsky.feed.post")
v1.vertex("post:body", "object")
v1.vertex("post:body.text", "string")
v1.edge("post", "post:body", "record-schema")
v1.edge("post:body", "post:body.text", "prop", "text")
v1.constraint("post:body.text", "maxLength", "3000")
schema_v1 = v1.build()
# (build schema_v2 the same way, with the field renamed to `content` ...)
# Detect breaking changes.
report = panproto.diff_and_classify(schema_v1, schema_v2, atproto)
print(report.compatible) # True or False
print(report.report_text()) # human-readable summary
# Auto-generate a bidirectional converter.
lens, quality, _ = panproto.auto_generate_lens(schema_v1, schema_v2, atproto)
view, complement = lens.get(instance)
restored = lens.put(view, complement)
# Version-control schemas.
repo = panproto.Repository.init("/path/to/repo")
repo.add(schema_v1)
repo.commit("initial schema")
repo.branch("feature")
repo.merge("feature")
API overview
| Module / class | Purpose |
|---|---|
Schema, SchemaBuilder |
Fluent schema construction; Schema.validate(protocol) checks rules. |
Protocol |
Schema-language definition. Protocol.from_theories(...) builds one from a Theory. |
get_builtin_protocol(name) |
Load any of the ~50 builtin protocols by name. |
define_protocol(spec) |
Define a custom protocol from a dict. |
Theory, create_theory |
GAT-level theory construction (sorts, ops, equations, directed_eqs). |
diff_schemas, diff_and_classify |
Structural diff and breaking-change classification. |
auto_generate_lens |
Generate a bidirectional Lens from two schemas. |
Lens |
get(instance) -> (view, complement), put(view, complement) -> instance. |
MigrationBuilder, compile_migration, compose_migrations |
Hand-rolled migration construction. |
Instance, IoRegistry |
Parse/emit data across the 50+ supported formats. |
Repository |
Filesystem-backed VCS: init, commit, branch, merge, log, blame, bisect, stash, tag, plus data versioning. |
AstParserRegistry, parse_source_file, ParseEmitLens |
Full-AST parsing across ~250 languages via tree-sitter. |
Expr, parse_expr, pretty_print_expr |
Embedded expression language. |
Performance notes
- The
_nativeextension talks to the Rust core through PyO3's zero-copy pyclass slabs. Schemas, theories, and lenses are reference-counted Rust objects on the Python side; mutations go through dedicated builder types (SchemaBuilder,MigrationBuilder) that consume onbuild(), so you can't accidentally observe partial state. - Cross-thread sharing of these objects requires the GIL; for parallel
work, fan out at the data layer (e.g. parallelise
lens.getcalls withconcurrent.futures) and keep the schema/lens objects per worker. - Wheel-load cost is one-time; the import sets up the protocol registry lazily so cold-start is fast.
Contributing
Source: bindings/python. Issues and pull requests at github.com/panproto/panproto/issues.
The native extension lives at
crates/panproto-py
on the Rust side; bindings/python/src/panproto/__init__.py is the
pure-Python re-export layer that maturin ships alongside the
compiled extension.
License
MIT © 2026 Aaron Steven White.
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 Distributions
Built Distributions
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 panproto-0.43.0-cp313-abi3-win_amd64.whl.
File metadata
- Download URL: panproto-0.43.0-cp313-abi3-win_amd64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.13+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d199987933cfcb8146737825eb052b73017678ba54cb8e44a0787418966b523f
|
|
| MD5 |
7264003480186e026d4de442292ccd15
|
|
| BLAKE2b-256 |
f414180a15a36267013cff433b4fcf746b1be9ca9f060481e7bcf8f716032fde
|
Provenance
The following attestation bundles were made for panproto-0.43.0-cp313-abi3-win_amd64.whl:
Publisher:
python-wheels.yml on panproto/panproto
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
panproto-0.43.0-cp313-abi3-win_amd64.whl -
Subject digest:
d199987933cfcb8146737825eb052b73017678ba54cb8e44a0787418966b523f - Sigstore transparency entry: 1420208683
- Sigstore integration time:
-
Permalink:
panproto/panproto@5c875755e5ac82993360b91c760dba59a4aa723d -
Branch / Tag:
refs/tags/v0.43.0 - Owner: https://github.com/panproto
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-wheels.yml@5c875755e5ac82993360b91c760dba59a4aa723d -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file panproto-0.43.0-cp313-abi3-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: panproto-0.43.0-cp313-abi3-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 8.5 MB
- Tags: CPython 3.13+, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a63c3ce7c411b36a788a00f3c572c0bec2c0dae4faf596d9410e3ded16c2ba48
|
|
| MD5 |
fcf138fe8b41b0ff8b9385cdf70ba714
|
|
| BLAKE2b-256 |
021b644dd5a30bcb6610a12818f210c89dd5aa68de5febfc14c22659cebf025c
|
Provenance
The following attestation bundles were made for panproto-0.43.0-cp313-abi3-manylinux_2_28_x86_64.whl:
Publisher:
python-wheels.yml on panproto/panproto
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
panproto-0.43.0-cp313-abi3-manylinux_2_28_x86_64.whl -
Subject digest:
a63c3ce7c411b36a788a00f3c572c0bec2c0dae4faf596d9410e3ded16c2ba48 - Sigstore transparency entry: 1420208800
- Sigstore integration time:
-
Permalink:
panproto/panproto@5c875755e5ac82993360b91c760dba59a4aa723d -
Branch / Tag:
refs/tags/v0.43.0 - Owner: https://github.com/panproto
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-wheels.yml@5c875755e5ac82993360b91c760dba59a4aa723d -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file panproto-0.43.0-cp313-abi3-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: panproto-0.43.0-cp313-abi3-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 8.2 MB
- Tags: CPython 3.13+, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62df120771b1dfc6fe86721f7e9eaa031f936a37eea7425297b0a9a84eb72307
|
|
| MD5 |
aff3f16b31f77fe95bb894b56eb6017e
|
|
| BLAKE2b-256 |
da5b95faff1d9e1fe16e93a02a7576136bd3e284d31be6ada71a7ed8c2e12dee
|
Provenance
The following attestation bundles were made for panproto-0.43.0-cp313-abi3-manylinux_2_28_aarch64.whl:
Publisher:
python-wheels.yml on panproto/panproto
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
panproto-0.43.0-cp313-abi3-manylinux_2_28_aarch64.whl -
Subject digest:
62df120771b1dfc6fe86721f7e9eaa031f936a37eea7425297b0a9a84eb72307 - Sigstore transparency entry: 1420208880
- Sigstore integration time:
-
Permalink:
panproto/panproto@5c875755e5ac82993360b91c760dba59a4aa723d -
Branch / Tag:
refs/tags/v0.43.0 - Owner: https://github.com/panproto
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-wheels.yml@5c875755e5ac82993360b91c760dba59a4aa723d -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file panproto-0.43.0-cp313-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: panproto-0.43.0-cp313-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 7.7 MB
- Tags: CPython 3.13+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29da2f7b4e5ab783d2b372cf144985bebbba6b2faba6ce114903463b4d0cb897
|
|
| MD5 |
f06a4c95dfe83b80c647e8ff30aafcf4
|
|
| BLAKE2b-256 |
d87ec3c16780f11edf5ab07028cbb72723c7f58f93d6efef39344153b2c02b63
|
Provenance
The following attestation bundles were made for panproto-0.43.0-cp313-abi3-macosx_11_0_arm64.whl:
Publisher:
python-wheels.yml on panproto/panproto
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
panproto-0.43.0-cp313-abi3-macosx_11_0_arm64.whl -
Subject digest:
29da2f7b4e5ab783d2b372cf144985bebbba6b2faba6ce114903463b4d0cb897 - Sigstore transparency entry: 1420208562
- Sigstore integration time:
-
Permalink:
panproto/panproto@5c875755e5ac82993360b91c760dba59a4aa723d -
Branch / Tag:
refs/tags/v0.43.0 - Owner: https://github.com/panproto
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-wheels.yml@5c875755e5ac82993360b91c760dba59a4aa723d -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file panproto-0.43.0-cp313-abi3-macosx_10_12_x86_64.whl.
File metadata
- Download URL: panproto-0.43.0-cp313-abi3-macosx_10_12_x86_64.whl
- Upload date:
- Size: 7.6 MB
- Tags: CPython 3.13+, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b0fd59ac059777ce2b7b060947d663c8181c2d0922532cbeda8f33032a1bdb1
|
|
| MD5 |
af92429820635558f011dd1895c80910
|
|
| BLAKE2b-256 |
3c15ef45e4c804832c3d5c3d70892045d295ef10d0bad05b08949676cecffaab
|
Provenance
The following attestation bundles were made for panproto-0.43.0-cp313-abi3-macosx_10_12_x86_64.whl:
Publisher:
python-wheels.yml on panproto/panproto
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
panproto-0.43.0-cp313-abi3-macosx_10_12_x86_64.whl -
Subject digest:
3b0fd59ac059777ce2b7b060947d663c8181c2d0922532cbeda8f33032a1bdb1 - Sigstore transparency entry: 1420208953
- Sigstore integration time:
-
Permalink:
panproto/panproto@5c875755e5ac82993360b91c760dba59a4aa723d -
Branch / Tag:
refs/tags/v0.43.0 - Owner: https://github.com/panproto
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-wheels.yml@5c875755e5ac82993360b91c760dba59a4aa723d -
Trigger Event:
workflow_dispatch
-
Statement type: