Installation¶
Requirements¶
- Python 3.10+
- A jambonz account (jambonz.cloud or self-hosted)
Install¶
Configuration¶
The SDK reads credentials from environment variables or a .env file:
.env
JAMBONZ_ACCOUNT_SID=your-account-sid
JAMBONZ_API_KEY=your-api-key
JAMBONZ_BASE_URL=https://api.jambonz.cloud # optional, this is the default
Or pass them directly:
from jambonz import JambonzClient
client = JambonzClient(
account_sid="your-account-sid",
api_key="your-api-key",
)
Tip
Get your Account SID and API Key from the jambonz portal under Account settings.