mixpanel / mixpanel-python

Official Mixpanel Python library.
https://mixpanel.com/help/reference/python
Other
102 stars 85 forks source link

Missing APIs #107

Closed davidt99 closed 2 years ago

davidt99 commented 2 years ago

I'm missing insight and engagement specifically. Is it planned?

jaredmixpanel commented 2 years ago

@davidt99 /insights and /engage are query API's for retrieving information out of Mixpanel, this SDK is a tracking SDK for sending data to Mixpanel. We do have a tracking API named /engage as well, and the various people_* methods in this SDK will send data to that API.

You may want to take a look at our mixpanel-utils library: https://github.com/mixpanel/mixpanel-utils

It doesn't have support for /insights or other formatted reports, but it is focused on importing/exporting your raw data, whereas this SDK is meant to be used on the server-side of your webapp to track data about your users into your Mixpanel project.