Metadata-Version: 2.1
Name: isend-python-sdk
Version: 0.1.1
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

# 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)
