Metadata-Version: 1.1
Name: jmbo-everlytic
Version: 0.1.3
Summary: Jmbo Everlytic mailing list subscription API.
Home-page: http://github.com/praekelt/jmbo-everlytic
Author: Praekelt International
Author-email: dev@praekelt.com
License: BSD
Description: jmbo-everlytic
        ==============
        
        jmbo-everlytic provides integration with the everlytic (pMailer) API.
        The only functionality supported is adding and removing members from a
        mailing list subscription.
        
        The communication protocol with the everlytic service is xmlrpc.
        
        Requirements
        ------------
        
        System libraries
        ****************
        - libxml2-dev
        
        Python packages
        ***************
        - xmlrpclib
        
        Usage
        -----
        
        `everlytic.api` contains functions for subscribing and unsubscribing to a
        mailing list. A local everlytic profile is stored to keep track of the
        member id on everlytic.
        
        Settings
        ********
        The following settings must be added to settings.py:
        ::
            EVERLYTIC = {
                'URL': 'http://your-host.pmailer.net/api/1.0',
                'API_KEY': 'your_api_key',
                'LIST_ID': 0    # set to a valid integer
            }
        ::
        
        Authors
        =======
        
        Praekelt Foundation
        -------------------
        
        * Jurgen Blignaut
        
        Changelog
        =========
        
        0.1.3
        -----
        #. Use celery to prevent timeouts.
        
        0.1.2
        -----
        #. Cleanup tests.
        #. More defensive code when creating profile objects.
        
        0.1.1
        -----
        #. Remove references to private values.
        
        0.1
        ---
        #. First release.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
