You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Script to get the album information from the AudioScrobbler API
Inputs:
- Artist
- Albulm
Output:
- Album Information
'''
## Import JSON and Requests
import json
import requests
## Artist and Album to get data for:
artist = 'Avicii'
album = 'Stories'
# API Connection
url = 'http://ws.audioscrobbler.com/2.0/?method=album.getinfo&api_key=277313dd0875f33f9b35a7c61030eee5&artist='+ artist +'&album=' + album +'&format=json'