https://github.com/bethropolis/song-recommendation-system
a simple song recommendation system
https://github.com/bethropolis/song-recommendation-system
Last synced: 11 months ago
JSON representation
a simple song recommendation system
- Host: GitHub
- URL: https://github.com/bethropolis/song-recommendation-system
- Owner: bethropolis
- Created: 2023-11-04T21:24:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-21T19:51:55.000Z (almost 2 years ago)
- Last Synced: 2025-04-12T03:54:13.147Z (about 1 year ago)
- Language: Svelte
- Homepage: https://song-recommendation-system.vercel.app
- Size: 603 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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
```bash
npm install
npm run dev
# if you want to build
npm run build
```
## where to get playlists
playlist have the following json structure:
```json
[
{
"no": 1,
"artist": "artist",
"song": "song",
"album_cover": "album_cover"
}
]
```
> you can use this [golang program](https://gist.github.com/bethropolis/ce5c20b8b3a753625b1ac1fa0562d199) to get playlists from spotify automatically.
## License
This project is licensed under the [MIT License](https://opensource.org/licenses/MIT).