├── .dockerignore ├── .github └── dependabot.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── Readme.md ├── SECURITY.md ├── Tune ├── __init__.py ├── __main__.py ├── assets │ ├── __init__.py │ ├── cookies.txt │ └── thumb │ │ ├── font.ttf │ │ ├── font2.ttf │ │ └── play_icons.png ├── core │ ├── bot.py │ ├── call.py │ ├── dir.py │ ├── git.py │ ├── mongo.py │ └── userbot.py ├── logging.py ├── misc.py ├── platforms │ ├── Apple.py │ ├── Carbon.py │ ├── Resso.py │ ├── Soundcloud.py │ ├── Spotify.py │ ├── Telegram.py │ ├── Youtube.py │ └── __init__.py ├── plugins │ ├── __init__.py │ ├── admins │ │ ├── assisuser.py │ │ ├── auth.py │ │ ├── callback.py │ │ ├── loop.py │ │ ├── pause.py │ │ ├── resume.py │ │ ├── seek.py │ │ ├── shuffle.py │ │ ├── skip.py │ │ ├── speed.py │ │ ├── stop.py │ │ └── vcinfo.py │ ├── bot │ │ ├── help.py │ │ ├── inline.py │ │ ├── repo.py │ │ ├── settings.py │ │ └── start.py │ ├── misc │ │ ├── autoleave.py │ │ ├── broadcast.py │ │ ├── seeker.py │ │ └── watcher.py │ ├── play │ │ ├── channel.py │ │ ├── live.py │ │ ├── play.py │ │ └── playmode.py │ ├── sudo │ │ ├── autoend.py │ │ ├── backup.py │ │ ├── blchat.py │ │ ├── block.py │ │ ├── gban.py │ │ ├── logger.py │ │ ├── maintenance.py │ │ ├── restart.py │ │ └── sudoers.py │ └── tools │ │ ├── active.py │ │ ├── chatlog.py │ │ ├── dev.py │ │ ├── id.py │ │ ├── invitelink.py │ │ ├── language.py │ │ ├── ping.py │ │ ├── queue.py │ │ ├── reload.py │ │ ├── speedtest.py │ │ └── stats.py └── utils │ ├── __init__.py │ ├── admin_check.py │ ├── admin_filters.py │ ├── channelplay.py │ ├── cookie_handler.py │ ├── database.py │ ├── decorators │ ├── __init__.py │ ├── admins.py │ ├── language.py │ └── play.py │ ├── downloader.py │ ├── errors.py │ ├── exceptions.py │ ├── extraction.py │ ├── formatters.py │ ├── inline │ ├── __init__.py │ ├── extras.py │ ├── help.py │ ├── play.py │ ├── queue.py │ ├── settings.py │ ├── speed.py │ ├── start.py │ └── stats.py │ ├── inlinequery.py │ ├── logger.py │ ├── pastebin.py │ ├── stream │ ├── autoclear.py │ ├── queue.py │ └── stream.py │ ├── sys.py │ ├── thumbnails.py │ └── tuning.py ├── app.json ├── config.py ├── heroku.yml ├── requirements.txt ├── runtime.txt ├── sample.env ├── setup ├── start └── strings ├── __init__.py ├── helpers.py └── langs ├── ar.yml ├── en.yml ├── hi.yml ├── ru.yml └── tr.yml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: bash start -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Readme.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Tune/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/__init__.py -------------------------------------------------------------------------------- /Tune/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/__main__.py -------------------------------------------------------------------------------- /Tune/assets/__init__.py: -------------------------------------------------------------------------------- 1 | # Authored By Certified Coders © 2025 2 | 3 | -------------------------------------------------------------------------------- /Tune/assets/cookies.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tune/assets/thumb/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/assets/thumb/font.ttf -------------------------------------------------------------------------------- /Tune/assets/thumb/font2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/assets/thumb/font2.ttf -------------------------------------------------------------------------------- /Tune/assets/thumb/play_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/assets/thumb/play_icons.png -------------------------------------------------------------------------------- /Tune/core/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/core/bot.py -------------------------------------------------------------------------------- /Tune/core/call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/core/call.py -------------------------------------------------------------------------------- /Tune/core/dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/core/dir.py -------------------------------------------------------------------------------- /Tune/core/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/core/git.py -------------------------------------------------------------------------------- /Tune/core/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/core/mongo.py -------------------------------------------------------------------------------- /Tune/core/userbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/core/userbot.py -------------------------------------------------------------------------------- /Tune/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/logging.py -------------------------------------------------------------------------------- /Tune/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/misc.py -------------------------------------------------------------------------------- /Tune/platforms/Apple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/platforms/Apple.py -------------------------------------------------------------------------------- /Tune/platforms/Carbon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/platforms/Carbon.py -------------------------------------------------------------------------------- /Tune/platforms/Resso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/platforms/Resso.py -------------------------------------------------------------------------------- /Tune/platforms/Soundcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/platforms/Soundcloud.py -------------------------------------------------------------------------------- /Tune/platforms/Spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/platforms/Spotify.py -------------------------------------------------------------------------------- /Tune/platforms/Telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/platforms/Telegram.py -------------------------------------------------------------------------------- /Tune/platforms/Youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/platforms/Youtube.py -------------------------------------------------------------------------------- /Tune/platforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/platforms/__init__.py -------------------------------------------------------------------------------- /Tune/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/__init__.py -------------------------------------------------------------------------------- /Tune/plugins/admins/assisuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/assisuser.py -------------------------------------------------------------------------------- /Tune/plugins/admins/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/auth.py -------------------------------------------------------------------------------- /Tune/plugins/admins/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/callback.py -------------------------------------------------------------------------------- /Tune/plugins/admins/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/loop.py -------------------------------------------------------------------------------- /Tune/plugins/admins/pause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/pause.py -------------------------------------------------------------------------------- /Tune/plugins/admins/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/resume.py -------------------------------------------------------------------------------- /Tune/plugins/admins/seek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/seek.py -------------------------------------------------------------------------------- /Tune/plugins/admins/shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/shuffle.py -------------------------------------------------------------------------------- /Tune/plugins/admins/skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/skip.py -------------------------------------------------------------------------------- /Tune/plugins/admins/speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/speed.py -------------------------------------------------------------------------------- /Tune/plugins/admins/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/stop.py -------------------------------------------------------------------------------- /Tune/plugins/admins/vcinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/admins/vcinfo.py -------------------------------------------------------------------------------- /Tune/plugins/bot/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/bot/help.py -------------------------------------------------------------------------------- /Tune/plugins/bot/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/bot/inline.py -------------------------------------------------------------------------------- /Tune/plugins/bot/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/bot/repo.py -------------------------------------------------------------------------------- /Tune/plugins/bot/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/bot/settings.py -------------------------------------------------------------------------------- /Tune/plugins/bot/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/bot/start.py -------------------------------------------------------------------------------- /Tune/plugins/misc/autoleave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/misc/autoleave.py -------------------------------------------------------------------------------- /Tune/plugins/misc/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/misc/broadcast.py -------------------------------------------------------------------------------- /Tune/plugins/misc/seeker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/misc/seeker.py -------------------------------------------------------------------------------- /Tune/plugins/misc/watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/misc/watcher.py -------------------------------------------------------------------------------- /Tune/plugins/play/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/play/channel.py -------------------------------------------------------------------------------- /Tune/plugins/play/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/play/live.py -------------------------------------------------------------------------------- /Tune/plugins/play/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/play/play.py -------------------------------------------------------------------------------- /Tune/plugins/play/playmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/play/playmode.py -------------------------------------------------------------------------------- /Tune/plugins/sudo/autoend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/sudo/autoend.py -------------------------------------------------------------------------------- /Tune/plugins/sudo/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/sudo/backup.py -------------------------------------------------------------------------------- /Tune/plugins/sudo/blchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/sudo/blchat.py -------------------------------------------------------------------------------- /Tune/plugins/sudo/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/sudo/block.py -------------------------------------------------------------------------------- /Tune/plugins/sudo/gban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/sudo/gban.py -------------------------------------------------------------------------------- /Tune/plugins/sudo/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/sudo/logger.py -------------------------------------------------------------------------------- /Tune/plugins/sudo/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/sudo/maintenance.py -------------------------------------------------------------------------------- /Tune/plugins/sudo/restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/sudo/restart.py -------------------------------------------------------------------------------- /Tune/plugins/sudo/sudoers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/sudo/sudoers.py -------------------------------------------------------------------------------- /Tune/plugins/tools/active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/tools/active.py -------------------------------------------------------------------------------- /Tune/plugins/tools/chatlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/tools/chatlog.py -------------------------------------------------------------------------------- /Tune/plugins/tools/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/tools/dev.py -------------------------------------------------------------------------------- /Tune/plugins/tools/id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/tools/id.py -------------------------------------------------------------------------------- /Tune/plugins/tools/invitelink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/tools/invitelink.py -------------------------------------------------------------------------------- /Tune/plugins/tools/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/tools/language.py -------------------------------------------------------------------------------- /Tune/plugins/tools/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/tools/ping.py -------------------------------------------------------------------------------- /Tune/plugins/tools/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/tools/queue.py -------------------------------------------------------------------------------- /Tune/plugins/tools/reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/tools/reload.py -------------------------------------------------------------------------------- /Tune/plugins/tools/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/tools/speedtest.py -------------------------------------------------------------------------------- /Tune/plugins/tools/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/plugins/tools/stats.py -------------------------------------------------------------------------------- /Tune/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/__init__.py -------------------------------------------------------------------------------- /Tune/utils/admin_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/admin_check.py -------------------------------------------------------------------------------- /Tune/utils/admin_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/admin_filters.py -------------------------------------------------------------------------------- /Tune/utils/channelplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/channelplay.py -------------------------------------------------------------------------------- /Tune/utils/cookie_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/cookie_handler.py -------------------------------------------------------------------------------- /Tune/utils/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/database.py -------------------------------------------------------------------------------- /Tune/utils/decorators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/decorators/__init__.py -------------------------------------------------------------------------------- /Tune/utils/decorators/admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/decorators/admins.py -------------------------------------------------------------------------------- /Tune/utils/decorators/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/decorators/language.py -------------------------------------------------------------------------------- /Tune/utils/decorators/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/decorators/play.py -------------------------------------------------------------------------------- /Tune/utils/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/downloader.py -------------------------------------------------------------------------------- /Tune/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/errors.py -------------------------------------------------------------------------------- /Tune/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/exceptions.py -------------------------------------------------------------------------------- /Tune/utils/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/extraction.py -------------------------------------------------------------------------------- /Tune/utils/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/formatters.py -------------------------------------------------------------------------------- /Tune/utils/inline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/inline/__init__.py -------------------------------------------------------------------------------- /Tune/utils/inline/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/inline/extras.py -------------------------------------------------------------------------------- /Tune/utils/inline/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/inline/help.py -------------------------------------------------------------------------------- /Tune/utils/inline/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/inline/play.py -------------------------------------------------------------------------------- /Tune/utils/inline/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/inline/queue.py -------------------------------------------------------------------------------- /Tune/utils/inline/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/inline/settings.py -------------------------------------------------------------------------------- /Tune/utils/inline/speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/inline/speed.py -------------------------------------------------------------------------------- /Tune/utils/inline/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/inline/start.py -------------------------------------------------------------------------------- /Tune/utils/inline/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/inline/stats.py -------------------------------------------------------------------------------- /Tune/utils/inlinequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/inlinequery.py -------------------------------------------------------------------------------- /Tune/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/logger.py -------------------------------------------------------------------------------- /Tune/utils/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/pastebin.py -------------------------------------------------------------------------------- /Tune/utils/stream/autoclear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/stream/autoclear.py -------------------------------------------------------------------------------- /Tune/utils/stream/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/stream/queue.py -------------------------------------------------------------------------------- /Tune/utils/stream/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/stream/stream.py -------------------------------------------------------------------------------- /Tune/utils/sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/sys.py -------------------------------------------------------------------------------- /Tune/utils/thumbnails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/thumbnails.py -------------------------------------------------------------------------------- /Tune/utils/tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/Tune/utils/tuning.py -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/app.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/config.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/heroku.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.12.6 -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/sample.env -------------------------------------------------------------------------------- /setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/setup -------------------------------------------------------------------------------- /start: -------------------------------------------------------------------------------- 1 | python3 -m Tune -------------------------------------------------------------------------------- /strings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/strings/__init__.py -------------------------------------------------------------------------------- /strings/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/strings/helpers.py -------------------------------------------------------------------------------- /strings/langs/ar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/strings/langs/ar.yml -------------------------------------------------------------------------------- /strings/langs/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/strings/langs/en.yml -------------------------------------------------------------------------------- /strings/langs/hi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/strings/langs/hi.yml -------------------------------------------------------------------------------- /strings/langs/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/strings/langs/ru.yml -------------------------------------------------------------------------------- /strings/langs/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CertifiedCoders/TuneViaBot/HEAD/strings/langs/tr.yml --------------------------------------------------------------------------------