Metadata-Version: 2.4
Name: chatclipthat
Version: 0.1.0
Summary: Python client for the ChatClipThat video and audio intelligence API
Author: ChatClipThat
Project-URL: Homepage, https://api.chatclipthat.com
Project-URL: Documentation, https://api.chatclipthat.com/docs
Project-URL: Repository, https://github.com/drippinrizz/ChatClipThat
Keywords: chatclipthat,video,audio,api,sdk
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx<1,>=0.27

# ChatClipThat Python SDK

Official lightweight Python client for the ChatClipThat recorded-media
intelligence API. It exposes the same production analysis and rendering
pipeline used by ChatClipThat through server-side, account-scoped resources.

```bash
python -m pip install chatclipthat
```

```python
from chatclipthat import ChatClipThat

with ChatClipThat("cct_live_...") as cct:
    account = cct.get_account()
    scanners = cct.list_scanners()
```

The client supports private video and audio uploads, saved scanners, runs,
typed observations, scanner batches, one-off video analyses, optional MP4
renders, and signed-webhook management. Keep API keys on your server.

See the [API documentation](https://api.chatclipthat.com/docs) for resource
schemas, upload handling, idempotency, polling, and webhook verification.
