Build an API‑first service that takes a user’s Spotify playlist ID and returns 10–30 recommended track IDs that blend seamlessly with the playlist. Designed for low latency (< 300 ms p95) at scale.
- Clone the repo:
git clone https://github.com/your-org/playlist-recommender.git cd playlist-recommender - Install Dependencies poetry install --with dev
- Copy .env.example to .env and fill in your credentials.
playlist-recommender/ ├── app/ │ └── core/ │ ├── init.py │ └── config.py ├── data/ ├── models/ ├── infra/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── pyproject.toml └── README.md