Skip to content

Instantly share code, notes, and snippets.

@dannolan
Created June 23, 2014 23:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dannolan/9995643c1282ae41b46c to your computer and use it in GitHub Desktop.
Save dannolan/9995643c1282ae41b46c to your computer and use it in GitHub Desktop.
gordy pls
import json
from pprint import pprint
json_data=open('formatted.json')
data = json.load(json_data)
# pprint(data['features'])
for x in data['features']:
print(x["properties"]["headline"])
json_data.close()
@GeordieGuy
Copy link

Wow gist trying to parse Python as markdown is a whole other problem

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment