Installation¶
Requirements¶
- Python 3.10+
- A jambonz account (jambonz.cloud or self-hosted)
Install¶
Configuration¶
The SDK reads credentials automatically from environment variables or a .env file:
Or pass them directly:
from jambonz import JambonzClient
client = JambonzClient(
account_sid="your-account-sid",
api_key="your-api-key",
)
Get your Account SID and API Key from the jambonz portal under Account settings.
Optional settings¶
| Variable | Default | Description |
|---|---|---|
JAMBONZ_ACCOUNT_SID |
— | Your account identifier |
JAMBONZ_API_KEY |
— | Your API key |
JAMBONZ_BASE_URL |
https://api.jambonz.cloud |
API base URL (change for self-hosted) |