Metadata-Version: 2.1
Name: tls.messaging
Version: 0.1.3
Summary: SDK for the Telstra Messaging API
License: Apache-2.0
Author: David Andersson
Author-email: david-andersson@users.noreply.github.com 
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# Telstra Messaging

The SDK for the Telstra messaging API.

## Installing

```bash
pip install messaging
```

## Getting Started

Set the `TLS_CLIENT_KEY` and `TLS_CLIENT_SECRET` environment variables. These
are the `Client key` and `Client secret` you can find here:
<https://dev.telstra.com/user/me/apps>.

To send your first SMS:

```python
from tls.messaging import sms

sms.send(to="+61412345678", body="Hi")
```

```bash
TLS_CLIENT_KEY="XXXX" TLS_CLIENT_SECRET="YYYY" python app.py
```

