Quickstart
Install the thin client, activate your licence, and run your first compiled script in under two minutes.
pip install pyvorin-thin --extra-index-url https://pypi.pyvorin.com/simple
pyvorin licence activate <KEY>
pyvorin run script.py
Everything you need to compile, accelerate, and scale Python with Pyvorin.
Install the thin client, activate your licence, and run your first compiled script in under two minutes.
pip install pyvorin-thin --extra-index-url https://pypi.pyvorin.com/simple
pyvorin licence activate <KEY>
pyvorin run script.py
The Pyvorin CLI communicates with the compile and licence APIs. Configure endpoints via environment variables or a local config file.
https://api.pyvorin.comPYVORIN_API_URL~/.pyvorin/config.json if presentWhen enabled, Pyvorin refuses to fall back to CPython. If a script contains unsupported constructs, compilation halts with a clear error instead of silently degrading to interpreted execution.
pyvorin run --strict script.py
Use in CI pipelines and performance-critical deployments where fallback is unacceptable.
Pyvorin reports every fallback event honestly. When the native compiler cannot handle a construct, the thin client records the reason code and sends it to telemetry.
Some dynamic Python constructs cannot be statically compiled. Pyvorin falls back to CPython for these with full transparency.
exec() / eval()All published benchmarks follow an honest methodology: native backend only, no fallback, warm-up runs, and statistical reporting.
Pyvorin only claims speedup on code that compiles natively. Marketing claims are gated by the safe_claims policy.
Understand the difference between native-compiled execution and honest fallback to CPython.
Statically compiled to machine code. 5×–150×+ speedups.
Runs in CPython with telemetry. Zero speedup claimed.
For language feature compatibility, kernel registry, ETL rules, and architecture maps, visit the full documentation site.
docs.pyvorin.comInstall the thin client, activate your licence, and run your first benchmark in minutes.