from datagate import DatagateClient
# With API key (recommended)
client = DatagateClient(api_key="dg_live_...")
# With JWT access token
client = DatagateClient(access_token="eyJ...")
# With custom base URL (for local development)
client = DatagateClient(
api_key="dg_live_...",
base_url="http://localhost:8080",
)