Place recently liked Spotify songs into a playlist that's more easily downloaded.
- Create a new app in the Spotify Developer Dashboard
- Make note of the Client ID and secret.
- Select
Edit Settingsand add the Redirect URIhttp://localhost:9090and save.
- Create a playlist with a name like
Recent Likes. - Right-click and select
SharethenCopy Spotify URI.
- Install Spotipy with
pip install spotipy --upgrade - Run the commands below, filling in the variables.
- Run the script with
python update-songs.py
export SPOTIPY_CLIENT_ID=''
export SPOTIPY_CLIENT_SECRET=''
export SPOTIPY_REDIRECT_URI='http://localhost:9090'
export SPOTIPY_CLIENT_USERNAME=''
export RECENT_LIKES_PLAYLIST_ID=''