Metadata-Version: 2.3
Name: centcom
Version: 1.0.0
Summary: Official CENTCOM Python SDK for requests and webhook verification
Project-URL: Homepage, https://contro1.com
Project-URL: Documentation, https://contro1.com/docs
Project-URL: Repository, https://github.com/contro1-hq/centcom-langgraph
Author-email: Contro1 <dev@contro1.com>
License: MIT
Keywords: approval,centcom,hitl,human-in-the-loop,webhook
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.9
Requires-Dist: httpx>=0.27.0
Description-Content-Type: text/markdown

# centcom

Official CENTCOM Python SDK for human-in-the-loop approval requests and webhook verification.

## Install

```bash
pip install centcom
```

## Quick Start

```python
from centcom import CentcomClient, verify_webhook

client = CentcomClient(api_key="cc_live_xxx")
req = client.create_request(
    type="approval",
    context="Order #123 refund request",
    question="Approve refund?",
    callback_url="https://your-app.com/centcom-webhook",
)
print(req["id"])
```
