├── .editorconfig ├── .env.example ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .pylintrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── assets └── .gitignore ├── commands ├── __init__.py ├── maintenance.py └── start.py ├── configurations ├── __init__.py └── settings.py ├── connectors └── __init__.py ├── constants └── __init__.py ├── core └── __init__.py ├── docs └── README.md ├── logs └── .gitignore ├── main.py ├── makefile ├── requirements.txt ├── tests └── __init__.py └── utils ├── __init__.py ├── decorators.py └── logger.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/.pylintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commands/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/commands/maintenance.py -------------------------------------------------------------------------------- /commands/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/commands/start.py -------------------------------------------------------------------------------- /configurations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configurations/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/configurations/settings.py -------------------------------------------------------------------------------- /connectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/logs/.gitignore -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/main.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/makefile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/utils/decorators.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzashakeri/telegram-bot-template/HEAD/utils/logger.py --------------------------------------------------------------------------------