├── .deepsource.toml ├── .env.dist ├── .github ├── dependabot.yml └── workflows │ ├── cloud-image.yml │ └── docker-image.yml ├── .gitignore ├── .gitpod.yml ├── .idx ├── .gitignore └── dev.nix ├── .python-version ├── Aptfile ├── Cloudfile ├── DISCLAIMER.md ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── app.py ├── cloud.sh ├── compose.yml ├── docker-compose.yml ├── install.py ├── install.sh ├── main.py ├── modules ├── admintool.py ├── admlist.py ├── afk.py ├── antipm.py ├── clear_notifs.py ├── direct.py ├── example.py ├── filters.py ├── help.py ├── id.py ├── loader.py ├── notes.py ├── open.py ├── ping.py ├── prefix.py ├── purge.py ├── python.py ├── removebg.py ├── say.py ├── sendmod.py ├── sessionkiller.py ├── sgb.py ├── shell.py ├── spam.py ├── squotes.py ├── stickers.py ├── support.py ├── thumbnail.py ├── updater.py ├── upl.py ├── url.py ├── user_info.py └── vt.py ├── nixpacks.toml ├── render.yaml ├── requirements.txt ├── run_command.txt ├── start ├── string_gen.py ├── termux-install.sh ├── thumb.jpg └── utils ├── __init__.py ├── config.py ├── conv.py ├── db.py ├── handlers.py ├── misc.py ├── module.py ├── rentry.py └── scripts.py /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cloud-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/.github/workflows/cloud-image.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.idx/.gitignore: -------------------------------------------------------------------------------- 1 | gc/ -------------------------------------------------------------------------------- /.idx/dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/.idx/dev.nix -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11.10 2 | -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- 1 | git 2 | wget 3 | ffmpeg 4 | mediainfo 5 | -------------------------------------------------------------------------------- /Cloudfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/Cloudfile -------------------------------------------------------------------------------- /DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/DISCLAIMER.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bash cloud.sh 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/app.json -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/app.py -------------------------------------------------------------------------------- /cloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/cloud.sh -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/compose.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/install.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/install.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/main.py -------------------------------------------------------------------------------- /modules/admintool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/admintool.py -------------------------------------------------------------------------------- /modules/admlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/admlist.py -------------------------------------------------------------------------------- /modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/afk.py -------------------------------------------------------------------------------- /modules/antipm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/antipm.py -------------------------------------------------------------------------------- /modules/clear_notifs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/clear_notifs.py -------------------------------------------------------------------------------- /modules/direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/direct.py -------------------------------------------------------------------------------- /modules/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/example.py -------------------------------------------------------------------------------- /modules/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/filters.py -------------------------------------------------------------------------------- /modules/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/help.py -------------------------------------------------------------------------------- /modules/id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/id.py -------------------------------------------------------------------------------- /modules/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/loader.py -------------------------------------------------------------------------------- /modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/notes.py -------------------------------------------------------------------------------- /modules/open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/open.py -------------------------------------------------------------------------------- /modules/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/ping.py -------------------------------------------------------------------------------- /modules/prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/prefix.py -------------------------------------------------------------------------------- /modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/purge.py -------------------------------------------------------------------------------- /modules/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/python.py -------------------------------------------------------------------------------- /modules/removebg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/removebg.py -------------------------------------------------------------------------------- /modules/say.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/say.py -------------------------------------------------------------------------------- /modules/sendmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/sendmod.py -------------------------------------------------------------------------------- /modules/sessionkiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/sessionkiller.py -------------------------------------------------------------------------------- /modules/sgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/sgb.py -------------------------------------------------------------------------------- /modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/shell.py -------------------------------------------------------------------------------- /modules/spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/spam.py -------------------------------------------------------------------------------- /modules/squotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/squotes.py -------------------------------------------------------------------------------- /modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/stickers.py -------------------------------------------------------------------------------- /modules/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/support.py -------------------------------------------------------------------------------- /modules/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/thumbnail.py -------------------------------------------------------------------------------- /modules/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/updater.py -------------------------------------------------------------------------------- /modules/upl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/upl.py -------------------------------------------------------------------------------- /modules/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/url.py -------------------------------------------------------------------------------- /modules/user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/user_info.py -------------------------------------------------------------------------------- /modules/vt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/modules/vt.py -------------------------------------------------------------------------------- /nixpacks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/nixpacks.toml -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/render.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_command.txt: -------------------------------------------------------------------------------- 1 | gunicorn app:app & python3 main.py -------------------------------------------------------------------------------- /start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/start -------------------------------------------------------------------------------- /string_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/string_gen.py -------------------------------------------------------------------------------- /termux-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/termux-install.sh -------------------------------------------------------------------------------- /thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/thumb.jpg -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/utils/conv.py -------------------------------------------------------------------------------- /utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/utils/db.py -------------------------------------------------------------------------------- /utils/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/utils/handlers.py -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/utils/misc.py -------------------------------------------------------------------------------- /utils/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/utils/module.py -------------------------------------------------------------------------------- /utils/rentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/utils/rentry.py -------------------------------------------------------------------------------- /utils/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-MoonTg-project/Moon-Userbot/HEAD/utils/scripts.py --------------------------------------------------------------------------------