This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""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 |
NewerOlder