Skip to content

Python SDK

The Python SDK supports programmatic access to Axis APIs for automation.

Authentication

Set your API key via environment variable:

export VELIKEY_API_KEY="<your-api-key>"

Example

import os

api_key = os.environ.get("VELIKEY_API_KEY")
if not api_key:
    raise SystemExit("VELIKEY_API_KEY is required")

# TODO: Replace with the actual SDK client once the SDK reference is finalized.
print("SDK initialized")