├── .github ├── CODEOWNERS └── workflows │ └── python-package.yml ├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── data.py ├── plugins ├── group.py ├── inline.py └── private │ ├── help.py │ ├── start.py │ └── stats.py └── requirements.txt /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @dashezup 2 | -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezNotesBot/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezNotesBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezNotesBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezNotesBot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezNotesBot/HEAD/bot.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezNotesBot/HEAD/data.py -------------------------------------------------------------------------------- /plugins/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezNotesBot/HEAD/plugins/group.py -------------------------------------------------------------------------------- /plugins/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezNotesBot/HEAD/plugins/inline.py -------------------------------------------------------------------------------- /plugins/private/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezNotesBot/HEAD/plugins/private/help.py -------------------------------------------------------------------------------- /plugins/private/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezNotesBot/HEAD/plugins/private/start.py -------------------------------------------------------------------------------- /plugins/private/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezNotesBot/HEAD/plugins/private/stats.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pyrogram 2 | Tgcrypto 3 | mariadb 4 | --------------------------------------------------------------------------------