A python script that sorts the user's liked Spotify tracks into playlists by the month they were liked. Inspired by an IFTTT applet by user t00r
- Python 3.10+
- A spotify account
- Spotify Client_id and Client_secret
pip install monthify
monthify --client-id=CLIENT_ID --client-secret=CLIENT_SECRET --options
Or with a configuration file
monthify --options
Monthify will look for a monthify.toml file in
Linux
~/.config/monthify/
Windows
C:\Users\username\AppData\Local\Monthify
Mac OS
/Users/username/Library/Application Support/Monthify
Your monthify.toml file should look like this
CLIENT_SECRET="..."
CLIENT_ID="..."
git clone https://github.com/madstone0-0/monthify.git
cd monthify
poetry install
poetry build