mixpanel-utils icon indicating copy to clipboard operation
mixpanel-utils copied to clipboard

Results 11 mixpanel-utils issues
Sort by recently updated
recently updated
newest added

When using the `import_events` with a JSON file an error is thrown: `ValueError: invalid mode: 'rbU'` I think the solution would be to just set the mode to `'rb'` instead.

Likely related to: https://stackoverflow.com/questions/3348460/csv-file-written-with-python-has-blank-lines-between-each-row

Currently - when providing a list of profile ids for operations, I received the following error: ```python params["$distinct_id"] = profile["$distinct_id"] ~~~~~~~^^^^^^^^^^^^^^^^ TypeError: 'int' object is not subscriptable ``` Cause is...

Adding data format example for import_people

I would like to test Mixpanel to see if it's the right fit for my purposes but I am hitting a wall while trying to import old data. I am...

`_get_engage_page` raises "TypeError: the JSON object must be str, bytes or bytearray, not NoneType" when the request fails with a 429 rate limited response. The call to [`self.request` in `_get_engage_page`...

https://github.com/mixpanel/mixpanel-utils/blob/61185dea3e7d125ee1f3edc94054950e293fa30c/__init__.py#L1751 change it to ```python reader = csv.reader(item_file, delimiter=delimiter_character) ``` The comma by default is not a very strong delimiter especially with how cloud databases export these data in a...

Handle missing IP and country code issues (encountered with a recent amplitude export).

The README twice refers to a "importing into datasets" section. There is no such section. Example: > See the section on [importing into datasets](https://github.com/mixpanel/mixpanel-utils#importing-data-into-a-dataset) for more information.

Hello, i'm trying to export my Mixpanel Data to reimport them to another project for Eu residency, but exporting is kinda a PITA. Like I have ~3Y of datas, i've...