Skip to content

Instantly share code, notes, and snippets.

@emaraschio
Created November 28, 2014 22:37
Show Gist options
  • Save emaraschio/de459f573aef1617a5ce to your computer and use it in GitHub Desktop.
Save emaraschio/de459f573aef1617a5ce to your computer and use it in GitHub Desktop.
Python Script: Transform JSON in CSV
#!/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