Metadata-Version: 1.1
Name: mixpanel
Version: 4.5.0
Summary: Official Mixpanel library for Python
Home-page: https://github.com/mixpanel/mixpanel-python
Author: Mixpanel, Inc.
Author-email: dev@mixpanel.com
License: Apache
Description: mixpanel-python |travis-badge|
        ==============================
        
        This is the official Mixpanel Python library. This library allows for
        server-side integration of Mixpanel.
        
        To import, export, transform, or delete your Mixpanel data, please see our
        `mixpanel_api package`_.
        
        
        Installation
        ------------
        
        The library can be installed using pip::
        
            pip install mixpanel
        
        
        Getting Started
        ---------------
        
        Typical usage usually looks like this::
        
            from mixpanel import Mixpanel
        
            mp = Mixpanel(YOUR_TOKEN)
        
            # tracks an event with certain properties
            mp.track(DISTINCT_ID, 'button clicked', {'color' : 'blue', 'size': 'large'})
        
            # sends an update to a user profile
            mp.people_set(DISTINCT_ID, {'$first_name' : 'Ilya', 'favorite pizza': 'margherita'})
        
        You can use an instance of the Mixpanel class for sending all of your events
        and people updates.
        
        
        Additional Information
        ----------------------
        
        * `Help Docs`_
        * `Full Documentation`_
        * mixpanel-python-async_; a third party tool for sending data asynchronously
          from the tracking python process.
        
        
        .. |travis-badge| image:: https://travis-ci.org/mixpanel/mixpanel-python.svg?branch=master
            :target: https://travis-ci.org/mixpanel/mixpanel-python
        .. _mixpanel_api package: https://github.com/mixpanel/mixpanel_api
        .. _Help Docs: https://www.mixpanel.com/help/reference/python
        .. _Full Documentation: http://mixpanel.github.io/mixpanel-python/
        .. _mixpanel-python-async: https://github.com/jessepollak/mixpanel-python-async
        
Keywords: mixpanel analytics
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
