Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dekobon/mixpanel-data-dump
Simple CLI utility written in Groovy to dump all data from a Mixpanel project
https://github.com/dekobon/mixpanel-data-dump
Last synced: 1 day ago
JSON representation
Simple CLI utility written in Groovy to dump all data from a Mixpanel project
- Host: GitHub
- URL: https://github.com/dekobon/mixpanel-data-dump
- Owner: dekobon
- Created: 2014-09-29T02:52:15.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-29T02:58:45.000Z (about 10 years ago)
- Last Synced: 2024-04-16T07:51:04.896Z (7 months ago)
- Language: Groovy
- Size: 176 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Mixpanel Data Dump
==================This is a simple utility written in Groovy that dumps all Mixpanel data into
a of JSON serialized objects delinated by new lines.
For more information, see the [Mix Panel documentation](https://mixpanel.com/docs/api-documentation/exporting-raw-data-you-inserted-into-mixpanel).
To setup to run from Linux:
```bash
chmod +x ./bin/dump_mixpanel_events
chmod +x ./gradlew
```
Then run as so to get help for the CLI:
```bash
./bin/dump_mixpanel_events -help
usage: dump_mixpanel_events [-d ] [-f ] [-h] [-k ] [-s
] [-t ]
-d,--from_date Date to dump data from (YYYY-mm-dd)
-f,--file File to write output to
-h,--help Lists available OPTIONS
-k,--api_key Mixpanel API key
-s,--api_secret Mixpanel API secret
-t,--to_date Date to dump data from (YYYY-mm-dd)```
Note that id a file name is not specified data will be written to STDOUT.