Skip to content

Instantly share code, notes, and snippets.

@danielgross
danielgross / mixmax-to-csv.py
Created June 23, 2019 00:29
Convert a Mixmax Poll to CSV
"""This script converts MixMax poll responses into a CSV.
Apologies in advance for not using requests or any delightful
Python. This file is meant to properly run as a gist with no libraries."""
# TODO: Paginate when MixMax's API is fixed.
import urllib2
import json
import csv
import StringIO
import os