Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 514 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 514 Bytes

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