Metadata-Version: 2.1
Name: byteline-sdk
Version: 1.0.1
Summary: Package to easily use Byteline REST APIs
Home-page: https://github.com/byteline/byteline-py-sdk
Author: Devinder Singh
Author-email: dsingh@byteline.io
License: UNKNOWN
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

# Byteline Python SDK

This document describes how to call Byteline REST APIs using the Python SDK.

## Messaging Service
Messaging service is used to send emails or text messages.
### How to send emails?

#### Installation

```
pip install byteline-sdk
```

#### Usage

###### To send emails using a template: 
Specify the `apiKey`, `templateId` from your Byteline [console](https://console.byteline.io). `templateParams` are the parameters defined in your template. See details at https://www.byteline.io/email-service.html#templates 

```
import messaging

messaging.send_templated_email({apiKey}, {templateId}, 'myfriend@gmail.com', {templateParams})
```

###### To send email using body:
Specify the `apiKey` from your Byteline [console](https://console.byteline.io).

```
import messaging

messaging.send_email({apiKey},'Zoom Party','Let's talk tomorrow evening?','myfriend@gmail.com')
```



