Spotify Metadata Scraper built with Streamlit and Python 🐍. Paste a link to any Spotify album or track and get:
- ✅ ISRC codes
- ✅ Label information
- ✅ Release date
- ✅ Full tracklist
- ✅ Export to PDF
- Clone this repo
- Create
.envwith your Spotify credentials - Run the app:
poetry install
poetry run streamlit run mtl_scrapmeup.pyPlease add to your .env file:
SPOTIFY_CLIENT_ID=your_client_id
SPOTIFY_CLIENT_SECRET=your_client_secret
- Clone this repo
- Create a
.envfile in the project root with your Spotify credentials:SPOTIFY_CLIENT_ID=your_client_id SPOTIFY_CLIENT_SECRET=your_client_secret - Build and run the app with Docker Compose:
docker compose up --build
- Visit http://localhost:8502 in your browser.
The .env file will be used to pass your Spotify credentials to the container. The Streamlit configuration can be customized in the .streamlit directory if needed.