Created
          December 5, 2013 19:09 
        
      - 
      
- 
        Save alexstorer/7811343 to your computer and use it in GitHub Desktop. 
  
    
      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 characters
    
  
  
    
  | 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