Created
December 5, 2013 19:09
-
-
Save alexstorer/7811343 to your computer and use it in GitHub Desktop.
Revisions
-
alexstorer created this gist
Dec 5, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ 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')