Skip to content

Instantly share code, notes, and snippets.

@alexstorer
Created December 5, 2013 19:09
Show Gist options
  • Save alexstorer/7811343 to your computer and use it in GitHub Desktop.
Save alexstorer/7811343 to your computer and use it in GitHub Desktop.
import json
f = open('persona.json','r')
j = json.loads(f.read())
s = set()
dlist = list()
for k in j:
print k
for things in j[k]:
print k, '======>', things
s.add(things)
#print ' ', j[k][things]
#for items in j[k][things]:
#print ' ', items['value'].encode('utf-8')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment