Skip to content
axint docs

Install (Python)

The Python SDK is published to PyPI as axint.

Terminal window
pip install axint

Requires Python 3.11 or newer. The package has zero runtime dependencies — the parser is built on the stdlib ast module.

Verify

Terminal window
axint --version
axint --help

The Python SDK tracks the compiler’s release train, so axint --version prints the same minor as the TypeScript CLI.

Development install

Terminal window
git clone https://github.com/agenticempire/axint
cd axint/python
pip install -e '.[dev]'
pytest
ruff check .
mypy axint

The development install adds pytest, ruff, and mypy in strict mode.