libpetri for Python
Python bindings for libpetri's Rust runtime. Build Coloured Time Petri Nets with a Python API and execute them on the precompiled Tokio backend through PyO3.
See the project README for the motivation and an order workflow using every arc type, concurrent actions, and timeout routing.
Install
pip install libpetri
Python 3.11 or newer is required. Published wheels contain the Rust extension; no Rust toolchain is needed for normal installation.
Quick start
import libpetri as lp
input_place = lp.Place("input")
output_place = lp.Place("output")
def uppercase(ctx: lp.TransitionContext) -> None:
ctx.output("output", ctx.input("input").upper())
net = (
lp.Net("example")
.transition(
lp.Transition("uppercase")
.input(lp.one(input_place))
.output(lp.out(output_place))
.action(uppercase)
.build()
)
.build()
)
result = lp.run_sync(net, initial={input_place: ["hello"]})
print(result.first(output_place)) # HELLO
Execution and concurrency
Python exposes one production path backed by Rust's owned precompiled net. The executor releases the GIL while running and reacquires it only for Python callbacks.
run_async accepts async def actions. Their awaits are bridged to the loop captured by the caller, but the Tokio worker invoking the callback does not itself have a running asyncio loop. Calls such as asyncio.create_task() or asyncio.get_running_loop() inside an action therefore fail. Prefer structural fan-out into several transitions; use lp.action_gather(...) when several Python awaitables genuinely belong inside one action, and lp.action_to_thread(...) for blocking functions.
Outputs are normally published atomically when an action returns. In an async action, ctx.flush() publishes the current batch early so downstream transitions can run while the action continues. Published batches are not rolled back if the action later fails.
Capabilities
- Input, output, read, inhibitor, and reset arcs.
- Immediate, deadline, delayed, window, and exact timing.
- AND/XOR/timeout routing and input forwarding.
- Reusable subnets, typed interfaces, composition, and place fusion.
- Environment events, event stores, debug protocol, and DOT export.
- ν-net fresh identities and correlated joins.
- Structural, timed, and SMT verification through the Rust engine where available.
SMT verification needs a z3 executable
The wheel ships the SMT verifier compiled in, but it does not bundle a solver. verify() runs the z3 executable found on PATH (or named by LIBPETRI_Z3), version 4.8.0 or newer; libpetri.z3_available() tells you whether one resolves, and without it every verification returns unknown with a reason naming the command. Set LIBPETRI_SMT_DUMP to a directory to keep every SMT-LIB2 script and solver reply.
Token typing
The package ships .pyi stubs and py.typed, so net construction is IDE- and type-checker-friendly. Token values cross the FFI as Python objects, however: unlike Java, TypeScript, and Rust, Python cannot enforce a place's token type at runtime. Validate data at system boundaries before adding it to a marking.
Build and test from source
python -m pip install -e '.[dev]'
maturin develop
pytest
The extension manifest lives in rust/libpetri-py. Do not build it as an ordinary Cargo workspace binary; maturin supplies the required Python-extension linkage.
Project links
- Language-agnostic specification — 208 active requirements
- Lean soundness and backend-refinement proofs
- Changelog
- Benchmarks
- Apache License 2.0
Release files for libpetri 4.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| libpetri-4.0.0.tar.gz | 1.5 MB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| libpetri-4.0.0-cp312-cp312-manylinux_2_39_x86_64.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.39+ x86-64 | Details |
Total release size: 3.2 MB
Release files / libpetri-4.0.0.tar.gz
| Download URL | libpetri-4.0.0.tar.gz |
|---|---|
| Size | 1.5 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
bbd68c94859aa4d3cf42ca697dcaeb438c0143c1a9083287a7552c01a5d1ea24
|
|
BLAKE2b-256 checksum How to use checksums |
200d5530206079190064c574969f5a8717ae60712f0c6e0ecd6e1c96082234e8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.12.7
|
Release files / libpetri-4.0.0-cp312-cp312-manylinux_2_39_x86_64.whl
| Download URL | libpetri-4.0.0-cp312-cp312-manylinux_2_39_x86_64.whl |
|---|---|
| Size | 1.7 MB |
| Tags | CPython 3.12 Linux glibc 2.39+ x86-64 |
|
SHA-256 checksum How to use checksums |
94c5ea2e47ce5d1a3a58debb49f252f8776359cd2a4478d9ddb11533e4173c03
|
|
BLAKE2b-256 checksum How to use checksums |
6f8a5b4c65104fd8446ace37b481bfb1580c8a0e69308853be2d3376e261dc22
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.12.7
|