├── .gitignore ├── LICENCE ├── README.md ├── examples └── MRE.py ├── pyrogram_patch ├── __init__.py ├── dispatcher.py ├── fsm │ ├── __init__.py │ ├── base_storage.py │ ├── filter.py │ ├── states.py │ └── storages │ │ ├── __init__.py │ │ ├── memory_storage.py │ │ └── redis_storage.py ├── middlewares │ ├── __init__.py │ └── middleware_types │ │ ├── __init__.py │ │ └── middlewares.py ├── patch.py ├── patch_data_pool.py ├── patch_helper.py └── router │ ├── __init__.py │ ├── patched_decorators │ ├── __init__.py │ ├── on_callback_query.py │ ├── on_chat_join_request.py │ ├── on_chat_member_updated.py │ ├── on_chosen_inline_result.py │ ├── on_deleted_messages.py │ ├── on_disconnect.py │ ├── on_edited_message.py │ ├── on_inline_query.py │ ├── on_message.py │ ├── on_poll.py │ ├── on_raw_update.py │ └── on_user_status.py │ └── router.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/README.md -------------------------------------------------------------------------------- /examples/MRE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/examples/MRE.py -------------------------------------------------------------------------------- /pyrogram_patch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/__init__.py -------------------------------------------------------------------------------- /pyrogram_patch/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/dispatcher.py -------------------------------------------------------------------------------- /pyrogram_patch/fsm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/fsm/__init__.py -------------------------------------------------------------------------------- /pyrogram_patch/fsm/base_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/fsm/base_storage.py -------------------------------------------------------------------------------- /pyrogram_patch/fsm/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/fsm/filter.py -------------------------------------------------------------------------------- /pyrogram_patch/fsm/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/fsm/states.py -------------------------------------------------------------------------------- /pyrogram_patch/fsm/storages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/fsm/storages/__init__.py -------------------------------------------------------------------------------- /pyrogram_patch/fsm/storages/memory_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/fsm/storages/memory_storage.py -------------------------------------------------------------------------------- /pyrogram_patch/fsm/storages/redis_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/fsm/storages/redis_storage.py -------------------------------------------------------------------------------- /pyrogram_patch/middlewares/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/middlewares/__init__.py -------------------------------------------------------------------------------- /pyrogram_patch/middlewares/middleware_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/middlewares/middleware_types/__init__.py -------------------------------------------------------------------------------- /pyrogram_patch/middlewares/middleware_types/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/middlewares/middleware_types/middlewares.py -------------------------------------------------------------------------------- /pyrogram_patch/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/patch.py -------------------------------------------------------------------------------- /pyrogram_patch/patch_data_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/patch_data_pool.py -------------------------------------------------------------------------------- /pyrogram_patch/patch_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/patch_helper.py -------------------------------------------------------------------------------- /pyrogram_patch/router/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/__init__.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/__init__.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_callback_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_callback_query.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_chat_join_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_chat_join_request.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_chat_member_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_chat_member_updated.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_chosen_inline_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_chosen_inline_result.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_deleted_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_deleted_messages.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_disconnect.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_edited_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_edited_message.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_inline_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_inline_query.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_message.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_poll.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_raw_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_raw_update.py -------------------------------------------------------------------------------- /pyrogram_patch/router/patched_decorators/on_user_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/patched_decorators/on_user_status.py -------------------------------------------------------------------------------- /pyrogram_patch/router/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/pyrogram_patch/router/router.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotttee/pyrogram_patch/HEAD/setup.py --------------------------------------------------------------------------------