Closed MatCast closed 5 months ago
When using the import_events with a JSON file an error is thrown:
import_events
ValueError: invalid mode: 'rbU'
I think the solution would be to just set the mode to 'rb' instead.
'rb'
You can also downgrade your python version to 3.10 which supports rbU
rbU
This is fixed in https://github.com/mixpanel/mixpanel-utils/pull/58
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.