Pysendy is a Python wrapper for Sendy's API. Read the LICENSE file before use it.
pip install pysendy
from pysendy import Sendy
s = Sendy(base_url='http://your_sendy_url')
# subscription (name is optional)
s.subscribe(name='John Doe', email='[email protected]', list_id='the_list_id',
custom_field1='custom_value1', custom_value2='custom_value2')
# unsubscription
s.unsubscribe(email='[email protected]', list_id='the_list_id')