Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Latest commit

 

History

History
23 lines (16 loc) · 1.11 KB

README.md

File metadata and controls

23 lines (16 loc) · 1.11 KB

#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.

Usage

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 from
  • to_date - date in yyyy-mm-dd format from which to begin querying for the event to

For more information, click here.