Skip to content

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 # → 0.1.0a1
axint --help

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.