Pythonを使用してURLを取得しようとしていますが、応答はJSONです。しかし、私が走ると
import urllib2
response = urllib2.urlopen('https://api.instagram.com/v1/tags/pizza/media/XXXXXX')
html=response.read()
print html
htmlはstr型で、JSONを期待しています。strの代わりにJSONまたはPython辞書として応答をキャプチャする方法はありますか?