Skip to content

Instantly share code, notes, and snippets.

View trentniemeyer's full-sized avatar

Trent Niemeyer trentniemeyer

View GitHub Profile
@trentniemeyer
trentniemeyer / MixPanelExport.py
Last active March 6, 2024 14:53
MixPanel Export API in Python 3
#! /usr/bin/env python
#
# Mixpanel, Inc. -- http://mixpanel.com/
#
# Python API client library to consume mixpanel.com analytics data.
#
# Copyright 2010-2013 Mixpanel, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
import base64
import urllib.request
import json
from datetime import datetime, timedelta
import re
import mailchimp
import mixpanel
import requests