Install (Python)
The Python SDK is published to PyPI as axint.
pip install axintRequires Python 3.11 or newer. The package has zero runtime dependencies —
the parser is built on the stdlib ast module.
Verify
axint --versionaxint --helpThe Python SDK tracks the compiler’s release train, so axint --version prints
the same minor as the TypeScript CLI.
Development install
git clone https://github.com/agenticempire/axintcd axint/pythonpip install -e '.[dev]'pytestruff check .mypy axintThe development install adds pytest, ruff, and mypy in strict mode.