#Mixpanel to Vero
A simple Ruby program that fetches data from Mixpanel (via Data Export API) and compiles a CSV file that Vero will understand. Parameters passed to this program will be passed to the Mixpanel API.
This program currently supports CSV generation of passed events.
This program require Ruby 1.8.7+ with the Bundler gem installed.
git clone https://github.com/jylamont/mixpanel_to_vero
cd mixpanel_to_vero
bundle install
ruby app.rb api_key=abcd api_secret=1234 from_date=2012-10-05 to_date=2012-10-11
api_key
- your Mixpanel API key (found here: https://mixpanel.com/account/)api_secret
- your Mixpanel API secret (found here: https://mixpanel.com/account/)from_date
- date in yyyy-mm-dd format from which to begin querying for the event fromto_date
- date in yyyy-mm-dd format from which to begin querying for the event to
For more information, click here.