Metadata-Version: 2.4
Name: notilify
Version: 0.1.0
Summary: Official Python SDK for the Notilify transactional SMS API
Author-email: Notilify <support@notilify.com>
License-Expression: MIT
Project-URL: Homepage, https://notilify.com
Project-URL: Repository, https://github.com/codelinglabs/notilify-sdks
Project-URL: Issues, https://github.com/codelinglabs/notilify-sdks/issues
Keywords: notilify,sms,transactional-sms
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# notilify for Python

```bash
python -m pip install notilify
```

```python
import os
from notilify import Notilify

client = Notilify(os.environ["NOTILIFY_API_KEY"])
response = client.send_message(
    sender="NOTILIFY",
    to="+14155552671",
    message="Your verification code is 482913",
    idempotency_key="verification-482913",
)
```
