Skip to content

Instantly share code, notes, and snippets.

@cyriac
Last active August 29, 2015 14:16
Show Gist options
  • Save cyriac/cdd010f3401489d145fa to your computer and use it in GitHub Desktop.
Save cyriac/cdd010f3401489d145fa to your computer and use it in GitHub Desktop.
csv_to_list_of_dict
import csv
mrows = []
# Creates list of dict from csv
with open('final.csv', mode='r') as infile:
reader = csv.DictReader(infile)
for row in reader:
mrows.append(row)
header = row.keys()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment