Skip to content

bethropolis/song-recommendation-system

Repository files navigation

Simple Recommendation System

What is it

This is a simple program where you upload a playlist, then from the playlist the program selects and recommends songs based on the playlist search.

How to run

npm install

npm run dev

# if you want to build
npm run build

where to get playlists

playlist have the following json structure:

[
    {
        "no": 1,
        "artist": "artist",
        "song": "song",
        "album_cover": "album_cover"
    }
]

you can use this golang program to get playlists from spotify automatically.

License

This project is licensed under the MIT License.