https://github.com/anthonybloomer/recommender-client
Music recommendation client powered using the Spotify Recommendations API.
https://github.com/anthonybloomer/recommender-client
flask music-recommendation recommender-system spotify spotify-api spotify-playlist
Last synced: 2 months ago
JSON representation
Music recommendation client powered using the Spotify Recommendations API.
- Host: GitHub
- URL: https://github.com/anthonybloomer/recommender-client
- Owner: AnthonyBloomer
- Created: 2018-12-30T18:40:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-04T09:19:41.000Z (over 3 years ago)
- Last Synced: 2025-10-26T11:04:19.063Z (8 months ago)
- Topics: flask, music-recommendation, recommender-system, spotify, spotify-api, spotify-playlist
- Language: JavaScript
- Homepage: https://music-recommender1.herokuapp.com
- Size: 23.4 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Music Recommender
Music recommendation client powered using the Spotify Recommendations API.
View on Heroku: [https://music-recommender1.herokuapp.com](https://music-recommender1.herokuapp.com)
## Development
Export the following environment variables:
``` bash
export SPOTIFY_CLIENT_ID=''
export SPOTIFY_CLIENT_SECRET=''
export YOUTUBE_API_KEY=''
```
Install the requirements:
``` bash
pip install -r requirements.txt
```
Launch a development server:
``` bash
python app.py
```
Run in production:
```
gunicorn -w 4 app:app
```