A Django web application that scrapes a public Spotify playlist and downloads the tracks as MP3 files from YouTube.
- Clone the Repository
git clone https://github.com/Wint3rNight/SpotifyScraper.git cd
- Set Up a Python Virtual Environment
python -m venv venvOn Windows:
venv\Scripts\activateOn macOS/Linux:
source venv/bin/activate-
Install System Dependency: FFmpeg
On macOS (with Homebrew):
brew install ffmpegOn Linux (Debian/Ubuntu):
sudo apt update && sudo apt install ffmpegOn Linux (Arch):
sudo pacman -Syu ffmpegOn Windows:
Follow the official instructions to download and add FFmpeg to your system's PATH.
- Install Python Packages
pip install -r requirements.txt- Run the Application
python manage.py runserverNavigate to http://127.0.0.1:8000/ in your web browser.