Metadata-Version: 2.4
Name: bafredo-devsms
Version: 0.1.0
Summary: Official DevSMS SDK for Python
Project-URL: Homepage, https://github.com/Bafredo/devsms-python
Project-URL: Repository, https://github.com/Bafredo/devsms-python
Author: Bafredo
License: MIT
Keywords: api,devsms,sdk,sms
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# DevSMS Python SDK

Package: `bafredo-devsms`

## Install

```bash
pip install bafredo-devsms
```

## Usage

```python
from devsms import DevSMSClient

client = DevSMSClient(api_key="YOUR_API_KEY")

response = client.send(
    to="+254712345678",
    message="Hello from Python",
    correlation_id="order-1001",
)

print(response.message_id, response.status)
```
