Metadata-Version: 2.4
Name: isend-python-sdk
Version: 0.1.2
Summary: Python SDK for iSend API
Home-page: https://github.com/devmanoharrr/isend-python-sdk
Author: Manohar Reddy
Author-email: devmanoharrr@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# iSend Python SDK

Official Python SDK for sending emails and events using the iSend API.

## Installation

You can install it via pip:

```bash
pip install isend-python-sdk

## Usage

from isend import iSend

# Initialize with your auth token
sdk = iSend("your_auth_token")

# Send an email
response = sdk.send_email("WelcomeEmail", "user@example.com", {"name": "John"})
print(response)

# Send an event
event_response = sdk.send_event("UserSignup", "user@example.com", {"property": "value"})
print(event_response)
