I'd like to parse
{"ticker":{"high":31.9099,"low":22.5,"vol":108468,"buy":29.61,"sell":30,"last":29.61}}
and end up with:
last = 29.61
but I don't know where to start parsing python :(
I'd like to parse
{"ticker":{"high":31.9099,"low":22.5,"vol":108468,"buy":29.61,"sell":30,"last":29.61}}
and end up with:
last = 29.61
but I don't know where to start parsing python :(
Or use simplejson with older versions of Python.
I'm not sure, but I thought I should post this here in case someone else finds it useful. There is a nice post here on Parsing JSON in Python - it is small be shows how you could use it in different scenarios.
Good luck!