├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── main.py ├── plugins ├── call_back.py └── commands.py ├── presets.py ├── requirements.txt ├── runtime.txt ├── sample_config.py ├── support └── buttons.py └── user.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | config.py 3 | __pycache__ 4 | *.session 5 | log.txt 6 | .idea 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/uniquify/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/uniquify/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/uniquify/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/uniquify/HEAD/bot.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | from bot import Bot 2 | 3 | Bot().run() 4 | -------------------------------------------------------------------------------- /plugins/call_back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/uniquify/HEAD/plugins/call_back.py -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/uniquify/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/uniquify/HEAD/presets.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyrogram==1.4.8 2 | tgcrypto 3 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.13 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/uniquify/HEAD/sample_config.py -------------------------------------------------------------------------------- /support/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/uniquify/HEAD/support/buttons.py -------------------------------------------------------------------------------- /user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4mallu/uniquify/HEAD/user.py --------------------------------------------------------------------------------