In my example I want to access all the albums Coldplay has. This is the json. I understand that with the library requests I transform it to a dictionary but I can not access the albums but it returns the value of each position in the element topalbums link
import requests
import json
r = requests.get('http://ws.audioscrobbler.com/2.0/?method=artist.gettopalbums&artist=coldplay&api_key=a31007b9178e35854f9fa22039cb7362&format=json')
musica_dict = json.loads(r.text)
print type(musica_dict)
for item in musica_dict:
for album in item:
print album