├── .github └── workflows │ └── pylint.yml ├── Dockerfile ├── LICENSE ├── MusicAndVideo ├── admins.py ├── github.py ├── helpers │ ├── admins.py │ ├── decorators.py │ ├── get_admins.py │ ├── get_file_id.py │ ├── handlers.py │ ├── merrors.py │ ├── other │ │ ├── choose │ │ │ ├── Roboto-Light.ttf │ │ │ ├── finalfont.ttf │ │ │ └── rrc.png │ │ └── generator │ │ │ ├── chattitle.py │ │ │ └── thumbnail.py │ └── queues.py ├── play.py ├── quote.py ├── song.py ├── truth_or_dare.py ├── tts.py ├── user_id.py └── userbot.py ├── README.md ├── app.json ├── config.py ├── heroku.yml ├── main.py ├── requirements.txt └── search └── __init__.py /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/LICENSE -------------------------------------------------------------------------------- /MusicAndVideo/admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/admins.py -------------------------------------------------------------------------------- /MusicAndVideo/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/github.py -------------------------------------------------------------------------------- /MusicAndVideo/helpers/admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/admins.py -------------------------------------------------------------------------------- /MusicAndVideo/helpers/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/decorators.py -------------------------------------------------------------------------------- /MusicAndVideo/helpers/get_admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/get_admins.py -------------------------------------------------------------------------------- /MusicAndVideo/helpers/get_file_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/get_file_id.py -------------------------------------------------------------------------------- /MusicAndVideo/helpers/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/handlers.py -------------------------------------------------------------------------------- /MusicAndVideo/helpers/merrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/merrors.py -------------------------------------------------------------------------------- /MusicAndVideo/helpers/other/choose/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/other/choose/Roboto-Light.ttf -------------------------------------------------------------------------------- /MusicAndVideo/helpers/other/choose/finalfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/other/choose/finalfont.ttf -------------------------------------------------------------------------------- /MusicAndVideo/helpers/other/choose/rrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/other/choose/rrc.png -------------------------------------------------------------------------------- /MusicAndVideo/helpers/other/generator/chattitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/other/generator/chattitle.py -------------------------------------------------------------------------------- /MusicAndVideo/helpers/other/generator/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/other/generator/thumbnail.py -------------------------------------------------------------------------------- /MusicAndVideo/helpers/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/helpers/queues.py -------------------------------------------------------------------------------- /MusicAndVideo/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/play.py -------------------------------------------------------------------------------- /MusicAndVideo/quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/quote.py -------------------------------------------------------------------------------- /MusicAndVideo/song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/song.py -------------------------------------------------------------------------------- /MusicAndVideo/truth_or_dare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/truth_or_dare.py -------------------------------------------------------------------------------- /MusicAndVideo/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/tts.py -------------------------------------------------------------------------------- /MusicAndVideo/user_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/user_id.py -------------------------------------------------------------------------------- /MusicAndVideo/userbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/MusicAndVideo/userbot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/app.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/config.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/heroku.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abodi20137/ajdjdjwiww8w8w8w/HEAD/requirements.txt -------------------------------------------------------------------------------- /search/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------