Metadata-Version: 2.1
Name: zoomconnect-sdk
Version: 0.0.1
Summary: Python Wrapper module for ZoomConnect API
Home-page: https://github.com/Lambrie/zoomconnect_sdk
Author: LambrieSteyn
Author-email: lambrie45@gmail.com
License: UNKNOWN
Keywords: Zoom ZoomConnect SMS Messages
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.18.4)
Requires-Dist: six (>=1.11.0)

<img src="https://www.zoomconnect.com/assets/logo.png">

# ZoomConnect Python SDK 

This Python package provides a wrapper for the [ZoomConnect API](https://www.zoomconnect.com/api).

### Installation

```
pip install zoomconnect-sdk
```

### Authentication

Please visit the [signup](https://www.zoomconnect.com/app/account/signup) page
to create an account and generate an API key.

### Example usage

```python
from zoomconnect_sdk.client import Client

c = Client(api_token='xxx-xxx-xxx-xxx', account_email='xxxx@xxx.co.za')
try:
    res = c.send_sms("0000000000", "Welcome to ZoomConnect")
except Exception as e:
    print(e)
else:
    print(res)
```

### License

[MIT](https://github.com/Lambrie/zoomconnect_sdk/blob/master/LICENSE)


