Quick and dirty way to loop over multiple playlists and extract release dates + optionally filter by specific year + sort tracks by date added.
git clone [email protected]:mike-sheppard/spotify-release-dates.git && cd spotify-release-dates && pip install -r requirements.txt
- Create a Spotify Developer account and create a new app to get your client ID and client secret - quick youtube guide here
- Set your Spotify username, playlist ID's, client ID and secret in
config.yml
(see + copyconfig.example.yml
) - Run the script:
python get-release-dates.py
show all tracks in playlists with release dates--playlist
generate a playlist you can copy & paste directly into Spotify--year=1972
filter by track/album release year
Nabbed and mutated from this super helpful Stack Overflow post