pysendy

Sendy API v1.1.7 for Python.


Keywords
pysendy, sendy, co, wrapper, api
License
Other
Install
pip install pysendy==0.0.5

Documentation

Pysendy

Pysendy is a Python wrapper for Sendy's API. Read the LICENSE file before use it.

Installation

pip install pysendy

Usage

from pysendy import Sendy
s = Sendy(base_url='http://your_sendy_url')

# subscription (name is optional)
s.subscribe(name='John Doe', email='email@to.subscribe', list_id='the_list_id', 
    custom_field1='custom_value1', custom_value2='custom_value2')

# unsubscription
s.unsubscribe(email='email@to.unsubscribe', list_id='the_list_id')