A script, that runs through a specified folder's songs, then puts them into their album's folders.
It's made to be used with spotyDL.
Install dependencies with pip:
pip install -r requirements.txtThen run the script:
python main.pyUsing apt:
sudo apt install python3.11 python3.11-venv pipUsing pacman:
sudo pacman -S python3Creating a venv:
python3 -m venv music-sorterActivating the venv:
source music-sorter/bin/activateInstalling dependencies:
pip install -r requirements.txtRunning the script:
python3 main.pyDeactivating the venv (when done):
deactivate