Under this link :
http://dev1.gecoloco.com/rte/done_json.php
I have a json-like object, that I'm operating on. I cannot load it with simplejson, because it is wrongly formatted. And thus this code fails :
conn = httplib.HTTPConnection("dev1.gecoloco.com")
conn.request("GET", "/rte/done_json.php")
r = conn.getresponse()
data = r.read()
logging.debug(data)
json = simplejson.loads(data)
As a result I'd like to get a list of dictionaries.
So first question is how to load it as proper json? Read as string and then replace quotes or something different ?
Second question is how to transform the properly formatted json to a list of dictionaries ? (Do I even need json to do this easily?) ?
Thanks for any help.
ast.literal_eval, you could also dosimplejson.loads(data.replace("'", '"'). This works fine for me using thejsonmodule which is supposed to be the same. You should probably complain to whoever is in charge of that sight. JSON is pretty hard to mess up. I'm sure they'd be really embarrassed and will fix it immediately. – aaronasterling Dec 2 '10 at 4:36