Skip to content

Instantly share code, notes, and snippets.

@mattroyer
Created May 10, 2016 21:36
Show Gist options
  • Save mattroyer/a9ed1c398cddc4b3255133ddbf8cc04c to your computer and use it in GitHub Desktop.
Save mattroyer/a9ed1c398cddc4b3255133ddbf8cc04c to your computer and use it in GitHub Desktop.
Get JSON API in usable form
import urllib
import json
github = urllib.urlopen('https://api.github.com/repos/google/acai')
body = github.read()
github.close()
json_data = json.loads(body)
print json_data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment