Skip to content

Instantly share code, notes, and snippets.

@girasquid
Last active December 18, 2015 17:19
Show Gist options
  • Save girasquid/5817940 to your computer and use it in GitHub Desktop.
Save girasquid/5817940 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from StringIO import StringIO
import csv
DUMMY_CSV = """
huh, wat, etc
huh, wat, etc
"""
dummy_file = StringIO(DUMMY_CSV)
fieldnames = ['huh', 'wat', 'etc']
reader = csv.DictReader(dummy_file, fieldnames=fieldnames)
for row in reader:
print row
fieldnames.sort()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment