I am trying to GET a URL using Python and the response is JSON. However, when I run
import urllib2 response = urllib2.urlopen(\'https://api.instagram.com/v1/
If the URL is returning valid JSON-encoded data, use the json library to decode that:
import urllib2 import json response = urllib2.urlopen('https://api.instagram.com/v1/tags/pizza/media/XXXXXX') data = json.load(response) print data