An open API service indexing awesome lists of open source software.

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.

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
```