Metadata-Version: 1.1
Name: pysendy
Version: 0.0.5
Summary: Sendy API v1.1.7 for Python.
Home-page: https://github.com/thiagofa/pysendy
Author: Thiago Faria de Andrade
Author-email: thiagofa@gmail.com
License: UNKNOWN
Download-URL: http://pypi.python.org/pypi/pysendy/
Description: Pysendy
        =======
        
        Pysendy is a Python wrapper for Sendy's API.
        Read the LICENSE file before use it.
        
        Installation
        ------------
            pip install pysendy
        
        Usage
        -----
        ```python
        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')
        ```
        
Keywords: pysendy sendy sendy.co wrapper api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
