├── .github ├── CODEOWNERS ├── FUNDING.yml └── workflows │ └── python-package.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── generate-pyrogram-session-string.py ├── main.py ├── plugins ├── ping.py ├── sysinfo.py └── vc │ ├── channel.py │ ├── player.py │ ├── radio.py │ └── recorder.py ├── requirements.txt ├── runtime.txt └── userbot.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @dashezup 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/README.md -------------------------------------------------------------------------------- /generate-pyrogram-session-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/generate-pyrogram-session-string.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/main.py -------------------------------------------------------------------------------- /plugins/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/plugins/ping.py -------------------------------------------------------------------------------- /plugins/sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/plugins/sysinfo.py -------------------------------------------------------------------------------- /plugins/vc/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/plugins/vc/channel.py -------------------------------------------------------------------------------- /plugins/vc/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/plugins/vc/player.py -------------------------------------------------------------------------------- /plugins/vc/radio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/plugins/vc/radio.py -------------------------------------------------------------------------------- /plugins/vc/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/plugins/vc/recorder.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | TgCrypto 2 | ffmpeg-python 3 | psutil 4 | pytgcalls[pyrogram] 5 | wheel 6 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.2 2 | -------------------------------------------------------------------------------- /userbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/tgvc-userbot/HEAD/userbot.py --------------------------------------------------------------------------------