├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── _pyrogram ├── __init__.py ├── __main__.py ├── helpers │ ├── adminhelpers.py │ ├── pyrohelper.py │ └── utils.py └── modules │ ├── __init__.py │ ├── admin.py │ ├── alive.py │ ├── dev.py │ ├── help.py │ ├── heroku3.py │ ├── info.py │ ├── json.py │ ├── load.py │ ├── paste.py │ ├── purge.py │ └── translate.py ├── _telethon ├── __init__.py ├── __main__.py └── modules │ ├── alive.py │ └── dev.py ├── app.json ├── config.py ├── requirements.txt ├── runtime.txt └── startup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | userbot: bash startup.sh 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/README.md -------------------------------------------------------------------------------- /_pyrogram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/__init__.py -------------------------------------------------------------------------------- /_pyrogram/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/__main__.py -------------------------------------------------------------------------------- /_pyrogram/helpers/adminhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/helpers/adminhelpers.py -------------------------------------------------------------------------------- /_pyrogram/helpers/pyrohelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/helpers/pyrohelper.py -------------------------------------------------------------------------------- /_pyrogram/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/helpers/utils.py -------------------------------------------------------------------------------- /_pyrogram/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/__init__.py -------------------------------------------------------------------------------- /_pyrogram/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/admin.py -------------------------------------------------------------------------------- /_pyrogram/modules/alive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/alive.py -------------------------------------------------------------------------------- /_pyrogram/modules/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/dev.py -------------------------------------------------------------------------------- /_pyrogram/modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/help.py -------------------------------------------------------------------------------- /_pyrogram/modules/heroku3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/heroku3.py -------------------------------------------------------------------------------- /_pyrogram/modules/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/info.py -------------------------------------------------------------------------------- /_pyrogram/modules/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/json.py -------------------------------------------------------------------------------- /_pyrogram/modules/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/load.py -------------------------------------------------------------------------------- /_pyrogram/modules/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/paste.py -------------------------------------------------------------------------------- /_pyrogram/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/purge.py -------------------------------------------------------------------------------- /_pyrogram/modules/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_pyrogram/modules/translate.py -------------------------------------------------------------------------------- /_telethon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_telethon/__init__.py -------------------------------------------------------------------------------- /_telethon/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_telethon/__main__.py -------------------------------------------------------------------------------- /_telethon/modules/alive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_telethon/modules/alive.py -------------------------------------------------------------------------------- /_telethon/modules/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/_telethon/modules/dev.py -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/app.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.9 2 | -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCodents/DevelopersUserbot/HEAD/startup.sh --------------------------------------------------------------------------------