├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot ├── __init__.py ├── __main__.py ├── bot.py ├── database │ ├── __init__.py │ └── database.py ├── plugins │ ├── auto_filter.py │ ├── callback.py │ ├── channel.py │ ├── commands.py │ └── settings.py ├── translation.py └── user.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m bot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/app.json -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/bot.py -------------------------------------------------------------------------------- /bot/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/database/__init__.py -------------------------------------------------------------------------------- /bot/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/database/database.py -------------------------------------------------------------------------------- /bot/plugins/auto_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/plugins/auto_filter.py -------------------------------------------------------------------------------- /bot/plugins/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/plugins/callback.py -------------------------------------------------------------------------------- /bot/plugins/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/plugins/channel.py -------------------------------------------------------------------------------- /bot/plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/plugins/commands.py -------------------------------------------------------------------------------- /bot/plugins/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/plugins/settings.py -------------------------------------------------------------------------------- /bot/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/translation.py -------------------------------------------------------------------------------- /bot/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/bot/user.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBotsz/Adv-Auto-Filter-Bot-V2/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.1 --------------------------------------------------------------------------------