Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A streaming library for reading raw event data from Mixpanel's export API
A small Python library for exporting and reading raw event data from Mixpanel while taking advantage of the streamable JSONLine data format.
This library is based on the Mixpanel's own data export library found here.
To install the mixpanel export library, simply run the following:
pip install mixpanel_export
Mixpanel's raw event data API returns data in JSONLine format, meaning each event is a JSON object on its own line.
Mixpanel gives a warning to not attempt to read this data until it has downloaded in its entirety due to being zipped in gzip
format, but this compression type is streamable, meaning it shouldn't matter.
Streaming reduces the footprint in RAM significantly as compared to Mixpanel's own Python API implementation when you only care about doing reduces over events.
Let's assume we want to get all events 'A' with a property 'B' that is equal to "2". Events 'A' also have a property 'C', which is some random string value. We want the results grouped and tallied by 'C' to see how many property 'C' events occurred.
This is simple and fast to do with this library.
from collections import Counter
from mixpanel_export import EventStream
api_key = '...'
api_secret = '...'
es = EventStream(api_key, api_secret)
params = {
'event': ["A"],
'from_date': '...',
'to_date': '...',
'where': 'property["B"] == "2"'
}
count = Counter()
def do_count(e):
count[e['properties']['C']] += 1
# allow the request a maximum of 5 minutes (300 seconds) before expiring
total = es.request(params, do_count, expire=300)
print("Total events processed %s, tally: %s" % (total, count))
For more details on what you can use for the params
argument, refer to Mixpanel's documentation here.
FAQs
A streaming library for reading raw event data from Mixpanel's export API
We found that mixpanel_export demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.