This Set of files does 2 things.
- GetToken will call against the Spotify API, to get the API token needed to make reqeusts.
- Then other files: albumnGet.py uses song and artist to return a track. GetAllAlbums.py uses the input.csv which should contain rows of Track,Artist. It will Then output, album appended to the row. ie Track,Artist,Album
Here is a simple flow chart:
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;