Python SDK
Planned features
Section titled “Planned features”- Async client built on
httpx - Full type coverage with Pydantic models
- CLI-compatible authentication (shared config files)
- Context managers for deploy workflows
Preview
Section titled “Preview”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}")Installation
Section titled “Installation”The SDK will be published to PyPI once available:
pip install ancla-sdk