├── .gitignore ├── COPYING ├── README.md ├── bot ├── __init__.py ├── __main__.py ├── bot.py ├── get_config.py ├── helpers │ ├── link_fliter.py │ ├── run_shell_command.py │ └── yt_direct_link_genr.py └── plugins │ ├── mute_vc.py │ ├── on_pm_messages.py │ ├── play_voiuce_hat.py │ ├── stop_voiuce_hat.py │ ├── tg_radio.py │ └── unmute_vc.py ├── requirements.txt └── sample_config.env /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/README.md -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/bot.py -------------------------------------------------------------------------------- /bot/get_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/get_config.py -------------------------------------------------------------------------------- /bot/helpers/link_fliter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/helpers/link_fliter.py -------------------------------------------------------------------------------- /bot/helpers/run_shell_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/helpers/run_shell_command.py -------------------------------------------------------------------------------- /bot/helpers/yt_direct_link_genr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/helpers/yt_direct_link_genr.py -------------------------------------------------------------------------------- /bot/plugins/mute_vc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/plugins/mute_vc.py -------------------------------------------------------------------------------- /bot/plugins/on_pm_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/plugins/on_pm_messages.py -------------------------------------------------------------------------------- /bot/plugins/play_voiuce_hat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/plugins/play_voiuce_hat.py -------------------------------------------------------------------------------- /bot/plugins/stop_voiuce_hat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/plugins/stop_voiuce_hat.py -------------------------------------------------------------------------------- /bot/plugins/tg_radio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/plugins/tg_radio.py -------------------------------------------------------------------------------- /bot/plugins/unmute_vc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/bot/plugins/unmute_vc.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PlayAStream/HEAD/sample_config.env --------------------------------------------------------------------------------