ClashFLAC
ClashFLAC is a full-stack music platform designed for discovering, streaming, and downloading bit-perfect lossless FLAC audio. It combines a high-performance REST API backend with a responsive retro-themed web application.
File Explorer
- .gitignore
- azapi.py
- interface.py
- models.py
- renovate.json
- requirements.txt
- __init__.py
- amzn_api.py
- auth.py
- __init__.py
- cli.py
- config.py
- progress.py
- prompts.py
- terminal.py
- test_cli.py
- __init__.py
- download.py
- fetch_track.py
- keys.py
- links.py
- mpd_info.py
- wvd.py
- __init__.py
- discography.py
- lyrics.py
- metadata.py
- playlist.py
- search.py
- tagging.py
- __init__.py
- decrypt.py
- mp4.py
- remux.py
- __init__.py
- _version.py
- main.py
- utils.py
- Clash music-DGvwBpn5.png
- index-CmGs5A4T.js
- index-CTUMh3gH.css
- Clash music.png
- index.html
- Clash music.png
- app.js
- Clash music.png
- index.html
- package-lock.json
- package.json
- style.css
- vite.config.js
- wrangler.toml
- __init__.py
- api.py
- auth.py
- config.py
- downloader.py
- models.py
- routes.py
- __init__.py
- __main__.py
- api.py
- auth.py
- cli.py
- config.py
- decryption.py
- downloader.py
- models.py
- README.md
- routes.py
- .gitignore
- Aptfile
- documentation.md
- download_progress.py
- LICENSE
- nixpacks.toml
- Procfile
- railway.json
- README.md
- requirements.txt
- server.py
- setup.md
- setup.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
uvicorn
View Details ▼
uvicorn
Python ASGI HTTP Server, for asynchronous projects.
uvicorn {{import.path:app_object}}
Run Python web app:
uvicorn --host {{localhost}} --port {{8080}} {{import.path:app_object}}
Listen on port 8080 on localhost:
uvicorn --reload {{import.path:app_object}}
Turn on live reload:
