I've got some json from last.fm's api which I've serialised into a dictionary using simplejson. A quick example of the basic structure is below.
{ "artist": "similar": { "artist": { "name": "Blah", "image": [{"#text":"URLHERE","size": "small"},{"#text":"URLHERE","size":"medium"},{"#text":"URLHERE","size":"large"}] } } }
Any ideas how I can access the image urls of various different sizes?
Thanks,
Jack