https://github.com/v1r4m/brps-flask
A playlist shuffler to fix SoundCloud's limited shuffle issue.
https://github.com/v1r4m/brps-flask
flask soundcloud
Last synced: 3 months ago
JSON representation
A playlist shuffler to fix SoundCloud's limited shuffle issue.
- Host: GitHub
- URL: https://github.com/v1r4m/brps-flask
- Owner: v1r4m
- Created: 2025-02-24T09:26:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-07T05:46:42.000Z (10 months ago)
- Last Synced: 2025-10-05T07:56:16.529Z (9 months ago)
- Topics: flask, soundcloud
- Language: HTML
- Homepage: https://music.viram.dev
- Size: 2.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# brps-flask




* SoundCloud's shuffle function on desktop stopped working properly, only shuffling a limited number of tracks. This repository is a playlist shuffler to fix that issue. Check out [this issue on reddit](https://www.reddit.com/r/trap/comments/6u6ort/any_way_to_actually_shuffle_your_soundcloud/).
* This is a refactored version of [v1r4m/big-random-playlist-for-soundcloud](https://github.com/v1r4m/big-random-playlist-for-soundcloud) from `next.js` to `flask`.
## quick start
### on Windows (CMD / PowerShell)
```
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
python app.py
```
### on Mac / Linux (bash/zsh)
```
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python app.py
```
* It will be served on `localhost:5001`.
### on docker
```
docker build -t brps-flask .
docker run -p 5001:5000 brps-flask
```
* It will be served on `localhost:5001`.