Skip to main content

AX Hub Python SDK

AX Hub Python SDK for https://api.axhub.ai. It gives agents a dependency-light client, generated backend route metadata, sync and async generated operation facades, typed error metadata, conformance tests, and a live-testable app/data workflow.

Install

pip install axhub-sdk==0.4.0

Local development:

python3 -m venv .venv
source .venv/bin/activate
pip install -e .

Required environment for agent work

export AXHUB_TOKEN="<short-lived PAT>"
export AXHUB_TENANT_ID="cc1e58f1-8e46-4ac7-96c1-190c4cdd5b70"   # test tenant
export AXHUB_TENANT_SLUG="test"

PAT mode is explicit: TokenType.PAT sends X-Api-Key. JWT mode is TokenType.JWT and sends Authorization: Bearer.

Agent quickstart: create a disposable app and enable its database

import os, time
from axhub_sdk import AxHubClient, TokenType

client = AxHubClient(
    base_url="https://api.axhub.ai",
    token=os.environ["AXHUB_TOKEN"],
    token_type=TokenType.PAT,
    default_tenant_id=os.environ["AXHUB_TENANT_ID"],
    default_tenant_slug=os.environ.get("AXHUB_TENANT_SLUG", "test"),
)

me = client.request("authGetApiV1Me")
user_id = me.get("userId") or (me.get("user") or {}).get("id")
if not user_id:
    raise RuntimeError("authGetApiV1Me did not return a user id")

suffix = str(int(time.time() * 1000))[-8:]
slug = f"agent-py-{suffix}"

app = client.apps.create({
    "slug": slug,
    "name": "Agent Python README QA",
    "visibility": "private",
    "auth_mode": "anonymous",
    "resource_preset": "S",
    "deploy_method": "docker",
    "subdomain": slug,
})
app_id = app["id"]

# Enable raw DB mode: a dedicated Postgres role is issued and DATABASE_URL is
# injected into the app on its next deploy. The app then does row CRUD over
# direct SQL with its own pg driver.
client.request("appsPostApiV1AppsByAppIDRawDb", path_params={"appID": app_id}, body={})

# Admin introspection/browse of the physical DB.
tables = client.request("schemaGetApiV1AppsByAppIDDbTables", path_params={"appID": app_id})

print("created", app_id, tables)

How to call the full API surface

  • High-level app create: client.apps.create(body) uses default_tenant_id.
  • Any route by operation id: client.request(operation_id, path_params={...}, query={...}, body={...}).
  • Generated facade: client.data.schema_get_api_v1_apps_by_app_id_db_tables(path_params={...}).
  • Async client: AsyncAxHubClient mirrors request and generated operation facades.
  • Route inventory: ROUTES, CONTEXT_ROUTES, ERROR_CODES, and OPERATION_METHODS.
  • Errors: catch AxHubError and branch on code, category, status, and retryable.

Dynamic app, schema, and data operations

Use the high-level apps.create helper for the first app, then use generated operation IDs for every backend route. Request bodies use backend wire keys, usually snake_case. Responses are normalized to camelCase in this SDK family, so read tableName, requestId, revokedAt, and similar keys from responses.

Task Operation ID Required path params Success assertion
Create env var appsPostApiV1AppsByAppIDEnvVars appID env.list includes key
Delete env var appsDeleteApiV1AppsByAppIDEnvVarsByKey appID, key env.list no longer includes key
Enable raw DB appsPostApiV1AppsByAppIDRawDb appID dedicated Postgres role issued; DATABASE_URL injected on next deploy
Disable raw DB appsDeleteApiV1AppsByAppIDRawDb appID raw DB mode turned off (data preserved)
List DB tables schemaGetApiV1AppsByAppIDDbTables appID response lists physical information_schema tables
Browse DB rows schemaGetApiV1AppsByAppIDDbTablesByTableRows appID, table response has rows array
Delete app appsDeleteApiV1AppsByAppID, then appsDeleteApiV1AppsByAppIDPermanent appID app is soft-deleted, then permanently deleted

Important semantics from live QA:

  • App database access is raw: appsPostApiV1AppsByAppIDRawDb issues a dedicated Postgres role and injects DATABASE_URL on the next deploy (the connection string is never returned). The app does its own row CRUD via direct SQL; the SDK exposes admin introspection/browse only (schemaGetApiV1AppsByAppIDDbTables / ...DbTablesByTableRows).
  • Deployment creation without a connected git/bootstrap source can return a precondition-style 4xx. That verifies SDK error handling, not a deploy bug.

Live QA evidence agents can trust

The SDK behavior documented here reflects live production QA against the AX Hub test tenant on 2026-06-08.

  • Tenant used for destructive QA: slug test, id cc1e58f1-8e46-4ac7-96c1-190c4cdd5b70.
  • Go, Java, Kotlin, Python, and Ruby each ran the generated all-operation sweep against 189 backend routes: SDK exceptions 0, backend 5xx 0.
  • Go, Java, Kotlin, Python, and Ruby each passed strict destructive DB QA: the flow exercised the raw-DB enable/reset lifecycle (instead of the removed dynamic-table flow), then deleted the app and re-read to prove deletion semantics.
  • Node ran the full production mutation suite and a real app bootstrap/deploy wait. Deployment id d3a48ce3-0f9c-4bab-aa07-863c31c44460 finished succeeded, then the app was deleted permanently.

Do not print tokens. Use short-lived PATs for agent QA and revoke them after the run.

Verification commands

Use local tests for every docs/code change. Run live tests only when you intentionally want destructive QA against test.

python3 -m unittest discover -s tests -v

# Destructive live all-operation sweep, only with a disposable PAT.
AXHUB_LIVE_ALL_METHODS=1 \
AXHUB_TOKEN="$AXHUB_TOKEN" \
AXHUB_LIVE_TENANT_ID="$AXHUB_TENANT_ID" \
AXHUB_LIVE_TENANT_SLUG="$AXHUB_TENANT_SLUG" \
PYTHONPATH=src python3 -m unittest tests.test_live_all_operations_e2e -v

Troubleshooting for agents

  • tenant_id_required: pass defaultTenantId / AXHUB_TENANT_ID before calling apps.create.
  • tokenType must be explicit: set PAT mode when using a PAT. PATs are sent as X-Api-Key; JWTs are sent as Authorization: Bearer.
  • slug_taken or schema_name_taken: append a timestamp suffix and retry. Never reuse fixture names in live destructive QA.
  • permission_denied / not_admin: the SDK is working. The token lacks the role for that route.
  • precondition_failed on deploy: connect git or use the app bootstrap flow first.
  • 4xx responses are expected for negative assertions. SDK bugs are unexpected exceptions, response decode failures, or backend 5xx during a valid call.

Release

See RELEASE.md for tag order, environment approvals, registry prerequisites, and smoke-test handling.

License

Apache-2.0.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

axhub_sdk-0.9.0.tar.gz (34.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

axhub_sdk-0.9.0-py3-none-any.whl (14.5 kB view details)

Uploaded Python 3

File details

Details for the file axhub_sdk-0.9.0.tar.gz.

File metadata

  • Download URL: axhub_sdk-0.9.0.tar.gz
  • Upload date:
  • Size: 34.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for axhub_sdk-0.9.0.tar.gz
Algorithm Hash digest
SHA256 6847f336324f0501382dd73f22d44cdf9f7f24c908aa06fec16f8086d8a0badf
MD5 c3910fe921632035dfc5742b6e5671cb
BLAKE2b-256 8fb3b7dcf6553c85746ab730c5c5f99d57999047a84b5ed3a187435449b49ee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for axhub_sdk-0.9.0.tar.gz:

Publisher: release.yml on jocoding-ax-partners/axhub-sdk-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axhub_sdk-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: axhub_sdk-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for axhub_sdk-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a3c7f97c11d2a68a9740ada9788fc7e3259e93d95bac5defd8d933f6fb7da572
MD5 e18415672a9e0bd21ed0b96658148fce
BLAKE2b-256 8d050e5658d1db2f22b069551ad55a925001f1b2ccde2208fa175fecae95ca91

See more details on using hashes here.

Provenance

The following attestation bundles were made for axhub_sdk-0.9.0-py3-none-any.whl:

Publisher: release.yml on jocoding-ax-partners/axhub-sdk-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page