Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 886 Bytes

README.rst

File metadata and controls

42 lines (25 loc) · 886 Bytes

r_sailthru

r_sailthru is a Python library for interfacing with Sailthru's API

r_sailthru is licensed under the Apache Licence, Version 2.0

Using

Using r_sailthru is easy. Install rocket and then r_sailthru from the modules directory. Using it looks like this:

from r_sailthru import Sailthru

api_key = ''
api_secret_key = ''

template_name = 'welcome template'
email_address = 'ih@ve.one'

sailthru = Sailthru(api_key=api_key, api_secret_key=api_secret_key)
send_id = sailthru.send.post(template_name, email_address)

Install

python ./setup.py install

r_sailthru depends on Rocket being installed. http://github.com/exfm/rocket

pip / easy_install support on the way

James Dennis <james@extension.fm>