mepost-sdk

A Python SDK for interacting with the Mepost API.


Keywords
mepost, email, sdk, api
License
MIT
Install
pip install mepost-sdk==0.1.3

Documentation

mepost-sdk

Overview

The mepost-sdk is a Python library designed to simplify interactions with the Mepost API for sending and managing emails.

Installation

Install this package using pip:

pip install mepost-sdk

Usage

Here is a quick example:

Copy code
from mepost.client import MepostClient

client = MepostClient(api_key="your_api_key")
response = client.send_email(email_data)
print(response)