├── .github ├── CODEOWNERS └── workflows │ └── pyLint.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── config.py ├── core ├── __init__.py ├── admins.py ├── decorators.py ├── funcs.py ├── groups.py ├── queue.py ├── song.py └── stream.py ├── genStr.py ├── heroku.yml ├── lang ├── __init__.py ├── ar.json ├── bn.json ├── cn.json ├── de.json ├── en.json ├── es.json ├── fr.json ├── hi.json ├── ja.json ├── nl.json ├── ru.json ├── te.json └── tr.json ├── main.py ├── requirements.txt ├── runtime.txt ├── sample.env ├── startup.sh └── theme ├── black.PNG ├── blue.PNG ├── font.ttf ├── green.PNG ├── grey.PNG ├── logo.png ├── orange.PNG ├── pink.PNG ├── red.PNG └── yellow.PNG /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @AsmSafone 2 | -------------------------------------------------------------------------------- /.github/workflows/pyLint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/.github/workflows/pyLint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: bash startup.sh 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/app.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/config.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/core/__init__.py -------------------------------------------------------------------------------- /core/admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/core/admins.py -------------------------------------------------------------------------------- /core/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/core/decorators.py -------------------------------------------------------------------------------- /core/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/core/funcs.py -------------------------------------------------------------------------------- /core/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/core/groups.py -------------------------------------------------------------------------------- /core/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/core/queue.py -------------------------------------------------------------------------------- /core/song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/core/song.py -------------------------------------------------------------------------------- /core/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/core/stream.py -------------------------------------------------------------------------------- /genStr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/genStr.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/heroku.yml -------------------------------------------------------------------------------- /lang/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/__init__.py -------------------------------------------------------------------------------- /lang/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/ar.json -------------------------------------------------------------------------------- /lang/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/bn.json -------------------------------------------------------------------------------- /lang/cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/cn.json -------------------------------------------------------------------------------- /lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/de.json -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/es.json -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/fr.json -------------------------------------------------------------------------------- /lang/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/hi.json -------------------------------------------------------------------------------- /lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/ja.json -------------------------------------------------------------------------------- /lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/nl.json -------------------------------------------------------------------------------- /lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/ru.json -------------------------------------------------------------------------------- /lang/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/te.json -------------------------------------------------------------------------------- /lang/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/lang/tr.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.7 2 | -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/sample.env -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/startup.sh -------------------------------------------------------------------------------- /theme/black.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/theme/black.PNG -------------------------------------------------------------------------------- /theme/blue.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/theme/blue.PNG -------------------------------------------------------------------------------- /theme/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/theme/font.ttf -------------------------------------------------------------------------------- /theme/green.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/theme/green.PNG -------------------------------------------------------------------------------- /theme/grey.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/theme/grey.PNG -------------------------------------------------------------------------------- /theme/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/theme/logo.png -------------------------------------------------------------------------------- /theme/orange.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/theme/orange.PNG -------------------------------------------------------------------------------- /theme/pink.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/theme/pink.PNG -------------------------------------------------------------------------------- /theme/red.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/theme/red.PNG -------------------------------------------------------------------------------- /theme/yellow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsmSafone/MusicPlayer/HEAD/theme/yellow.PNG --------------------------------------------------------------------------------