Metadata-Version: 1.1
Name: tornado-mixpanel
Version: 0.1-dev
Summary: An async client for mixpanel.
Home-page: https://github.com/alejandrobernardis/tornado-mixpanel
Author: Alejandro M. Bernardis
Author-email: alejandro.m.bernardis@gmail.com
License: MIT
Description: 
        Tornado Mixpanel
        ----------------
        
        Tornado Mixpanel is an async library for Mixpanel service. This library allows
        for server-side integration of Mixpanel.
        
        
        Example
        ```````
        
        .. code:: python
            from tornado import gen, ioloop
            from tornado_mixpanel.client import AsyncMixpanelClient
        
        
            @gen.coroutine
            def run():
                client = AsyncMixpanelClient('<mixpanel-token>')
                raw_input('Press (enter) to continue...')
        
                try:
                    r = yield client.track(
                        'user-xxxx', 'steps', {'step_one': True, 'step_two': False})
                    print r.body
        
                    r = yield client.people_set(
                        'client-xxxx', {'fullname': 'Alejandro Bernardis'})
                    print r.body
        
                    r = yield client.people_append(
                        'client-xxxx', {'age': 31, 'locale': 'es_AR'})
                    print r.body
                except Exception, e:
                    print e
        
                ioloop.IOLoop.current().stop()
        
        
            if __name__ == '__main__':
                run()
                ioloop.IOLoop.instance().start()
        
        
        Easy to Setup
        `````````````
        
        .. code:: bash
            $ pip install tornado-mixpanel
        
        
        Links
        `````
        
        * `website <https://github.com/alejandrobernardis/tornado-mixpanel>`_
        
        
Platform: Linux
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Natural Language :: Spanish
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
