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 --version # → 0.1.0a1axint --helpDevelopment 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.