10
Cómo obtener JSON de la página web en el script Python
Obtuve el siguiente código en uno de mis scripts: # # url is defined above. # jsonurl = urlopen(url) # # While trying to debug, I put this in: # print jsonurl # # Was hoping text would contain the actual json crap from the URL, but seems not... # …