├── .github ├── CODEOWNERS └── workflows │ └── python-package.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── docker-compose.yml ├── requirements.txt ├── runtime.txt └── tgmusicbot.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @dashezup 2 | -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgmusicbot/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgmusicbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgmusicbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgmusicbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 tgmusicbot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgmusicbot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgmusicbot/HEAD/app.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgmusicbot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow==9.1.0 2 | Pyrogram==2.0.19 3 | TgCrypto==1.2.3 4 | ffmpeg-python==0.2.0 5 | youtube-dl 6 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.2 2 | -------------------------------------------------------------------------------- /tgmusicbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgmusicbot/HEAD/tgmusicbot.py --------------------------------------------------------------------------------