Metadata-Version: 2.4
Name: doja-sdk
Version: 0.1.0
Summary: Official Python SDK for DoJa Chatbots and WhatsApp Business Integration
Author-email: DoJa Consulting <contact@dojaconsulting.cloud>
Project-URL: Homepage, https://dojaconsulting.cloud
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests

# DoJa Python SDK

The official Python SDK for interacting with DoJa Chatbots and WhatsApp Business Cloud API.

### Installation
```bash
pip install doja-sdk
```

### Usage
```python
from doja_sdk import DojaClient

doja = DojaClient(
    doja_token="DOJA-SEC-YOUR_LICENSE",
    whatsapp_token="YOUR_META_TOKEN",
    phone_id="YOUR_PHONE_ID"
)

doja.send_text("525500000000", "Hello from DoJa SDK!")
```
