Skip to content

Instantly share code, notes, and snippets.

@jakern
Created October 25, 2015 01:13
Show Gist options
  • Save jakern/e9876eaa1526ba98fd72 to your computer and use it in GitHub Desktop.
Save jakern/e9876eaa1526ba98fd72 to your computer and use it in GitHub Desktop.
import csv, json
csvfile = open('file.csv', 'r')
jsonfile = open('file.json', 'w')
reader = csv.DictReader( csvfile )
for row in reader:
json.dump(row, jsonfile)
jsonfile.write('\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment