Created
November 28, 2014 22:37
-
-
Save emaraschio/de459f573aef1617a5ce to your computer and use it in GitHub Desktop.
Python Script: Transform JSON in CSV
This file contains 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
#!/usr/bin/env python | |
import json | |
import csv | |
f = open('FILE.json') | |
data = json.load(f) | |
f.close() | |
f=csv.writer(open('FILE.csv','wb+')) | |
for item in data: | |
f.writerow([item[0], item[1]]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment