Ho ottenuto il seguente codice in uno dei miei script:
#
# 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...
#
text = json.loads(jsonurl)
print text
Quello che voglio fare è ottenere {{.....etc.....}}
ciò che vedo nell'URL quando lo carico in Firefox nel mio script in modo da poterne analizzare un valore. Ho cercato su Google un sacco, ma non ho trovato una buona risposta su come ottenere effettivamente le {{...}}
cose da un URL che termina .json
in un oggetto in uno script Python.
json.loads
che consuma un uso di stringa (che è il motivo per cui.read()
è richiesto, usajson.load(response)
invece.