Skip to content

Python SDK

  • Async client built on httpx
  • Full type coverage with Pydantic models
  • CLI-compatible authentication (shared config files)
  • Context managers for deploy workflows
from ancla import AsyncClient
async with AsyncClient() as ancla:
apps = await ancla.apps.list(org="my-org", project="my-project")
for app in apps:
print(f"{app.slug}: {app.latest_deployment.status}")

The SDK will be published to PyPI once available:

Terminal window
pip install ancla-sdk