mixpanel-python
mixpanel-python copied to clipboard
Official Mixpanel Python library.
Creating a session `__init__` causes Http 104, connection reset errors. The session shouldn't be alive for that long.
When `Mixpanel.alias` is used it creates it's own default `Consumer` instance and sends the event through it. This makes it ignore any custom configuration done on the side of a...
mixpanel.alias method force using sync consumer and initialize one without take in account any custom configuration. I propose add sync_consumer parameter to mixpanel initializer according to be able to add...
In the [full documentation](http://mixpanel.github.io/mixpanel-python/) there are no clear definitions for the meta argument, which is used for all requests. Also seems different methods require different shapes of meta argument. For...
If a property value is of type DecimalField, then it's not serializable and raises error. Error : `Object of type Decimal is not JSON serializable` I can fix this issue...
While testing out service accounts, I kept getting `Unauthorized, invalid project secret. See docs for more information: https://developer.mixpanel.com/reference/authentication#project-secret` raised from the SDK I ended up tracing this to the SDK...
A Mixpanel DNS today took down our service because it blocked on Max Retries. Any chance these tracking events can be sent from a background thread so that in the...
It should be possible to switch between the two consumer classes provided without any code change. Currently you'll run into issues if you have implemented the `BufferedConsumer`, with calls to...
A Consumer-based workaround for #41 will likely require some cut-and-paste code, or referring to private Consumer methods, or both. The whole point of the Consumer architecture is to allow people...
Hi! I've been trying to follow [this guide](https://docs.mixpanel.com/docs/tracking-methods/id-management/identifying-users-simplified#server-side-identity-management) to implement server side tracking. When calling track with event name **$identify** i get the following error: `Mixpanel error: distinct_id, missing or...