Metadata-Version: 2.4
Name: royal-sdk-panterra
Version: 0.1.1
Summary: Royal Python client for curated PanTerra Streams APIs
License-Expression: Apache-2.0
Requires-Python: >=3.11
Requires-Dist: attrs>=22.2.0
Requires-Dist: httpx<0.29.0,>=0.27.0
Requires-Dist: royal-sdk-core==0.1.0
Description-Content-Type: text/markdown

# Royal PanTerra SDK for Python

Typed sync and async access to the curated PanTerra Streams API. The specification
prefers v2 operations and retains v1 operations only where the current vendor surface
has no equivalent.

```python
from royal_sdk_panterra import PanTerraClient

with PanTerraClient(access_token) as client:
    result = client.list_call_detail_records(account_id=12345)
```

The facade includes account and user CDRs, agents, groups, and recordings, with a
matching `PanTerraAsyncClient`. The complete curated surface is available through
`client.generated_client` and `royal_sdk_panterra._generated.api`.
