├── .gitignore ├── LICENSE ├── README.md └── plugins ├── eval └── eval.py ├── haste ├── haste.py └── requirements.txt ├── replace └── replace.py └── welcome └── welcome.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrogram/plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrogram/plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrogram/plugins/HEAD/README.md -------------------------------------------------------------------------------- /plugins/eval/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrogram/plugins/HEAD/plugins/eval/eval.py -------------------------------------------------------------------------------- /plugins/haste/haste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrogram/plugins/HEAD/plugins/haste/haste.py -------------------------------------------------------------------------------- /plugins/haste/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /plugins/replace/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrogram/plugins/HEAD/plugins/replace/replace.py -------------------------------------------------------------------------------- /plugins/welcome/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrogram/plugins/HEAD/plugins/welcome/welcome.py --------------------------------------------------------------------------------