Estou tentando OBTER um URL usando Python e a resposta é JSON. No entanto, quando eu corro
import urllib2
response = urllib2.urlopen('https://api.instagram.com/v1/tags/pizza/media/XXXXXX')
html=response.read()
print html
O html é do tipo str e estou esperando um JSON. Existe alguma maneira de capturar a resposta como JSON ou um dicionário Python em vez de um str.
response.read()
retornando uma string JSON válida?