telegrinder 0.3.4__py3-none-any.whl → 0.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of telegrinder might be problematic. Click here for more details.
- telegrinder/__init__.py +148 -149
- telegrinder/api/__init__.py +9 -8
- telegrinder/api/api.py +101 -93
- telegrinder/api/error.py +20 -16
- telegrinder/api/response.py +20 -20
- telegrinder/api/token.py +36 -36
- telegrinder/bot/__init__.py +72 -66
- telegrinder/bot/bot.py +83 -76
- telegrinder/bot/cute_types/__init__.py +19 -17
- telegrinder/bot/cute_types/base.py +184 -258
- telegrinder/bot/cute_types/callback_query.py +400 -385
- telegrinder/bot/cute_types/chat_join_request.py +62 -61
- telegrinder/bot/cute_types/chat_member_updated.py +157 -160
- telegrinder/bot/cute_types/inline_query.py +44 -43
- telegrinder/bot/cute_types/message.py +2590 -2637
- telegrinder/bot/cute_types/pre_checkout_query.py +42 -0
- telegrinder/bot/cute_types/update.py +112 -104
- telegrinder/bot/cute_types/utils.py +62 -95
- telegrinder/bot/dispatch/__init__.py +59 -55
- telegrinder/bot/dispatch/abc.py +76 -77
- telegrinder/bot/dispatch/context.py +96 -98
- telegrinder/bot/dispatch/dispatch.py +254 -202
- telegrinder/bot/dispatch/handler/__init__.py +13 -13
- telegrinder/bot/dispatch/handler/abc.py +23 -24
- telegrinder/bot/dispatch/handler/audio_reply.py +44 -44
- telegrinder/bot/dispatch/handler/base.py +57 -57
- telegrinder/bot/dispatch/handler/document_reply.py +44 -44
- telegrinder/bot/dispatch/handler/func.py +129 -135
- telegrinder/bot/dispatch/handler/media_group_reply.py +44 -43
- telegrinder/bot/dispatch/handler/message_reply.py +36 -36
- telegrinder/bot/dispatch/handler/photo_reply.py +44 -44
- telegrinder/bot/dispatch/handler/sticker_reply.py +37 -37
- telegrinder/bot/dispatch/handler/video_reply.py +44 -44
- telegrinder/bot/dispatch/middleware/__init__.py +3 -3
- telegrinder/bot/dispatch/middleware/abc.py +97 -22
- telegrinder/bot/dispatch/middleware/global_middleware.py +70 -0
- telegrinder/bot/dispatch/process.py +151 -157
- telegrinder/bot/dispatch/return_manager/__init__.py +15 -13
- telegrinder/bot/dispatch/return_manager/abc.py +104 -108
- telegrinder/bot/dispatch/return_manager/callback_query.py +20 -20
- telegrinder/bot/dispatch/return_manager/inline_query.py +15 -15
- telegrinder/bot/dispatch/return_manager/message.py +36 -36
- telegrinder/bot/dispatch/return_manager/pre_checkout_query.py +20 -0
- telegrinder/bot/dispatch/view/__init__.py +15 -13
- telegrinder/bot/dispatch/view/abc.py +45 -41
- telegrinder/bot/dispatch/view/base.py +231 -200
- telegrinder/bot/dispatch/view/box.py +140 -129
- telegrinder/bot/dispatch/view/callback_query.py +16 -17
- telegrinder/bot/dispatch/view/chat_join_request.py +11 -16
- telegrinder/bot/dispatch/view/chat_member.py +37 -39
- telegrinder/bot/dispatch/view/inline_query.py +16 -17
- telegrinder/bot/dispatch/view/message.py +43 -44
- telegrinder/bot/dispatch/view/pre_checkout_query.py +16 -0
- telegrinder/bot/dispatch/view/raw.py +116 -114
- telegrinder/bot/dispatch/waiter_machine/__init__.py +17 -17
- telegrinder/bot/dispatch/waiter_machine/actions.py +14 -13
- telegrinder/bot/dispatch/waiter_machine/hasher/__init__.py +8 -8
- telegrinder/bot/dispatch/waiter_machine/hasher/callback.py +55 -55
- telegrinder/bot/dispatch/waiter_machine/hasher/hasher.py +59 -57
- telegrinder/bot/dispatch/waiter_machine/hasher/message.py +51 -51
- telegrinder/bot/dispatch/waiter_machine/hasher/state.py +20 -19
- telegrinder/bot/dispatch/waiter_machine/machine.py +251 -172
- telegrinder/bot/dispatch/waiter_machine/middleware.py +94 -89
- telegrinder/bot/dispatch/waiter_machine/short_state.py +57 -68
- telegrinder/bot/polling/__init__.py +4 -4
- telegrinder/bot/polling/abc.py +25 -25
- telegrinder/bot/polling/polling.py +139 -131
- telegrinder/bot/rules/__init__.py +85 -62
- telegrinder/bot/rules/abc.py +213 -206
- telegrinder/bot/rules/callback_data.py +122 -163
- telegrinder/bot/rules/chat_join.py +45 -43
- telegrinder/bot/rules/command.py +126 -126
- telegrinder/bot/rules/enum_text.py +33 -36
- telegrinder/bot/rules/func.py +28 -26
- telegrinder/bot/rules/fuzzy.py +24 -24
- telegrinder/bot/rules/id.py +24 -0
- telegrinder/bot/rules/inline.py +58 -56
- telegrinder/bot/rules/integer.py +21 -20
- telegrinder/bot/rules/is_from.py +127 -127
- telegrinder/bot/rules/logic.py +18 -0
- telegrinder/bot/rules/markup.py +42 -43
- telegrinder/bot/rules/mention.py +14 -14
- telegrinder/bot/rules/message.py +15 -17
- telegrinder/bot/rules/message_entities.py +33 -35
- telegrinder/bot/rules/node.py +33 -27
- telegrinder/bot/rules/payload.py +81 -0
- telegrinder/bot/rules/payment_invoice.py +29 -0
- telegrinder/bot/rules/regex.py +36 -37
- telegrinder/bot/rules/rule_enum.py +72 -72
- telegrinder/bot/rules/start.py +42 -42
- telegrinder/bot/rules/state.py +35 -37
- telegrinder/bot/rules/text.py +38 -33
- telegrinder/bot/rules/update.py +15 -15
- telegrinder/bot/scenario/__init__.py +5 -5
- telegrinder/bot/scenario/abc.py +17 -19
- telegrinder/bot/scenario/checkbox.py +174 -176
- telegrinder/bot/scenario/choice.py +48 -51
- telegrinder/client/__init__.py +12 -4
- telegrinder/client/abc.py +100 -75
- telegrinder/client/aiohttp.py +134 -130
- telegrinder/client/form_data.py +31 -0
- telegrinder/client/sonic.py +212 -0
- telegrinder/model.py +208 -315
- telegrinder/modules.py +239 -237
- telegrinder/msgspec_json.py +14 -14
- telegrinder/msgspec_utils.py +478 -410
- telegrinder/node/__init__.py +86 -25
- telegrinder/node/attachment.py +163 -87
- telegrinder/node/base.py +288 -160
- telegrinder/node/callback_query.py +54 -53
- telegrinder/node/command.py +34 -33
- telegrinder/node/composer.py +163 -198
- telegrinder/node/container.py +33 -27
- telegrinder/node/either.py +82 -0
- telegrinder/node/event.py +54 -65
- telegrinder/node/file.py +51 -0
- telegrinder/node/me.py +15 -16
- telegrinder/node/payload.py +78 -0
- telegrinder/node/polymorphic.py +67 -48
- telegrinder/node/rule.py +72 -76
- telegrinder/node/scope.py +36 -38
- telegrinder/node/source.py +87 -71
- telegrinder/node/text.py +53 -41
- telegrinder/node/tools/__init__.py +3 -3
- telegrinder/node/tools/generator.py +36 -40
- telegrinder/py.typed +0 -0
- telegrinder/rules.py +1 -62
- telegrinder/tools/__init__.py +152 -93
- telegrinder/tools/adapter/__init__.py +19 -0
- telegrinder/tools/adapter/abc.py +49 -0
- telegrinder/tools/adapter/dataclass.py +56 -0
- telegrinder/{bot/rules → tools}/adapter/errors.py +5 -5
- telegrinder/{bot/rules → tools}/adapter/event.py +63 -65
- telegrinder/{bot/rules → tools}/adapter/node.py +46 -48
- telegrinder/{bot/rules → tools}/adapter/raw_event.py +27 -27
- telegrinder/{bot/rules → tools}/adapter/raw_update.py +30 -30
- telegrinder/tools/buttons.py +106 -80
- telegrinder/tools/callback_data_serilization/__init__.py +5 -0
- telegrinder/tools/callback_data_serilization/abc.py +51 -0
- telegrinder/tools/callback_data_serilization/json_ser.py +60 -0
- telegrinder/tools/callback_data_serilization/msgpack_ser.py +172 -0
- telegrinder/tools/error_handler/__init__.py +7 -7
- telegrinder/tools/error_handler/abc.py +30 -33
- telegrinder/tools/error_handler/error.py +9 -9
- telegrinder/tools/error_handler/error_handler.py +179 -193
- telegrinder/tools/formatting/__init__.py +83 -63
- telegrinder/tools/formatting/deep_links.py +541 -0
- telegrinder/tools/formatting/{html.py → html_formatter.py} +266 -294
- telegrinder/tools/formatting/spec_html_formats.py +71 -117
- telegrinder/tools/functional.py +8 -12
- telegrinder/tools/global_context/__init__.py +7 -7
- telegrinder/tools/global_context/abc.py +63 -63
- telegrinder/tools/global_context/global_context.py +387 -412
- telegrinder/tools/global_context/telegrinder_ctx.py +27 -27
- telegrinder/tools/i18n/__init__.py +7 -7
- telegrinder/tools/i18n/abc.py +30 -30
- telegrinder/tools/i18n/middleware/__init__.py +3 -3
- telegrinder/tools/i18n/middleware/abc.py +22 -25
- telegrinder/tools/i18n/simple.py +43 -43
- telegrinder/tools/input_file_directory.py +30 -0
- telegrinder/tools/keyboard.py +128 -128
- telegrinder/tools/lifespan.py +105 -0
- telegrinder/tools/limited_dict.py +32 -37
- telegrinder/tools/loop_wrapper/__init__.py +4 -4
- telegrinder/tools/loop_wrapper/abc.py +20 -15
- telegrinder/tools/loop_wrapper/loop_wrapper.py +169 -224
- telegrinder/tools/magic.py +307 -157
- telegrinder/tools/parse_mode.py +6 -6
- telegrinder/tools/state_storage/__init__.py +4 -4
- telegrinder/tools/state_storage/abc.py +31 -35
- telegrinder/tools/state_storage/memory.py +25 -25
- telegrinder/tools/strings.py +13 -0
- telegrinder/types/__init__.py +268 -260
- telegrinder/types/enums.py +711 -701
- telegrinder/types/input_file.py +51 -0
- telegrinder/types/methods.py +5055 -4633
- telegrinder/types/objects.py +7058 -6950
- telegrinder/verification_utils.py +30 -32
- {telegrinder-0.3.4.dist-info → telegrinder-0.4.0.dist-info}/LICENSE +22 -22
- telegrinder-0.4.0.dist-info/METADATA +144 -0
- telegrinder-0.4.0.dist-info/RECORD +182 -0
- {telegrinder-0.3.4.dist-info → telegrinder-0.4.0.dist-info}/WHEEL +1 -1
- telegrinder/bot/rules/adapter/__init__.py +0 -17
- telegrinder/bot/rules/adapter/abc.py +0 -31
- telegrinder/node/message.py +0 -14
- telegrinder/node/update.py +0 -15
- telegrinder/tools/formatting/links.py +0 -38
- telegrinder/tools/kb_set/__init__.py +0 -4
- telegrinder/tools/kb_set/base.py +0 -15
- telegrinder/tools/kb_set/yaml.py +0 -63
- telegrinder-0.3.4.dist-info/METADATA +0 -110
- telegrinder-0.3.4.dist-info/RECORD +0 -165
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: telegrinder
|
|
3
|
-
Version: 0.3.4
|
|
4
|
-
Summary: Modern visionary telegram bot framework.
|
|
5
|
-
Home-page: https://github.com/timoniq/telegrinder
|
|
6
|
-
License: MIT
|
|
7
|
-
Keywords: asyncio,api schema,async,bot building,bot api,custom rules,telegram,telegram bot api framework,telegrinder framework,middleware,composition,framework,telegrinder,waiter machine
|
|
8
|
-
Author: timoniq
|
|
9
|
-
Author-email: tesseradecades@mail.ru
|
|
10
|
-
Maintainer: luwqz1
|
|
11
|
-
Maintainer-email: howluwqz1@gmail.com
|
|
12
|
-
Requires-Python: >=3.11,<4.0
|
|
13
|
-
Classifier: Environment :: Console
|
|
14
|
-
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
-
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
-
Classifier: Topic :: Software Development :: Quality Assurance
|
|
21
|
-
Classifier: Typing :: Typed
|
|
22
|
-
Requires-Dist: PyYAML (>=6.0,<7.0)
|
|
23
|
-
Requires-Dist: aiohttp (>=3.8.1,<4.0.0)
|
|
24
|
-
Requires-Dist: certifi (>=2024.2.2,<2025.0.0)
|
|
25
|
-
Requires-Dist: choicelib (>=0.1.5,<0.2.0)
|
|
26
|
-
Requires-Dist: colorama (>=0.4.0,<0.5.0)
|
|
27
|
-
Requires-Dist: envparse (>=0.2.0,<0.3.0)
|
|
28
|
-
Requires-Dist: fntypes (>=0.1.3,<0.2.0)
|
|
29
|
-
Requires-Dist: msgspec (>=0.18.6,<0.19.0)
|
|
30
|
-
Requires-Dist: requests (>=2.28.1,<3.0.0)
|
|
31
|
-
Requires-Dist: typing-extensions (>=4.10.0,<5.0.0)
|
|
32
|
-
Requires-Dist: vbml (>=1.1.post1,<2.0)
|
|
33
|
-
Project-URL: Bug Tracker, https://github.com/timoniq/telegrinder/issues
|
|
34
|
-
Project-URL: Repository, https://github.com/timoniq/telegrinder
|
|
35
|
-
Description-Content-Type: text/markdown
|
|
36
|
-
|
|
37
|
-
# Telegrinder
|
|
38
|
-
|
|
39
|
-
Framework for effective and reliable telegram bot building.
|
|
40
|
-
|
|
41
|
-
Still in development.
|
|
42
|
-
|
|
43
|
-
* Type hinted
|
|
44
|
-
* Customizable and extensible
|
|
45
|
-
* Ready to use scenarios and rules
|
|
46
|
-
* Fast models built on [msgspec](https://github.com/jcrist/msgspec)
|
|
47
|
-
* Both low-level and high-level API
|
|
48
|
-
* Support [optional dependecies](https://github.com/timoniq/telegrinder/blob/dev/docs/guide/optional_dependencies.md)
|
|
49
|
-
|
|
50
|
-
# Getting started
|
|
51
|
-
|
|
52
|
-
Install using pip:
|
|
53
|
-
|
|
54
|
-
```console
|
|
55
|
-
pip install telegrinder
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
Using poetry:
|
|
59
|
-
|
|
60
|
-
```console
|
|
61
|
-
poetry add telegrinder
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
Install from github:
|
|
65
|
-
|
|
66
|
-
```console
|
|
67
|
-
pip install -U https://github.com/timoniq/telegrinder/archive/dev.zip
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
```console
|
|
71
|
-
poetry add git+https://github.com/timoniq/telegrinder.git#dev
|
|
72
|
-
```
|
|
73
|
-
|
|
74
|
-
Basic example:
|
|
75
|
-
|
|
76
|
-
```python
|
|
77
|
-
from telegrinder import API, Message, Telegrinder, Token
|
|
78
|
-
from telegrinder.modules import logger
|
|
79
|
-
from telegrinder.rules import Text
|
|
80
|
-
|
|
81
|
-
api = API(token=Token("123:token"))
|
|
82
|
-
bot = Telegrinder(api)
|
|
83
|
-
logger.set_level("INFO")
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
@bot.on.message(Text("/start"))
|
|
87
|
-
async def start(message: Message):
|
|
88
|
-
me = (await api.get_me()).unwrap()
|
|
89
|
-
await message.answer(f"Hello, {message.from_user.full_name}! I'm {me.full_name}.")
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
bot.run_forever()
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
# Documentation
|
|
96
|
-
|
|
97
|
-
[Readthedocs](https://telegrinder.readthedocs.io)
|
|
98
|
-
|
|
99
|
-
# Community
|
|
100
|
-
|
|
101
|
-
Join our [telegram forum](https://t.me/botoforum).
|
|
102
|
-
|
|
103
|
-
# [Contributing](https://github.com/timoniq/telegrinder/blob/main/contributing.md)
|
|
104
|
-
|
|
105
|
-
# License
|
|
106
|
-
|
|
107
|
-
Telegrinder is [MIT licensed](./LICENSE)\
|
|
108
|
-
Copyright © 2022-2024 [timoniq](https://github.com/timoniq)\
|
|
109
|
-
Copyright © 2024 [luwqz1](https://github.com/luwqz1)
|
|
110
|
-
|
|
@@ -1,165 +0,0 @@
|
|
|
1
|
-
telegrinder/__init__.py,sha256=8dl9pWmMRmGfP3hmp-yLU-RCTM8B5qfxA9zBcaCPNok,5551
|
|
2
|
-
telegrinder/api/__init__.py,sha256=LY1ojnvhhxIQd19uDklATXRK9HdBeKSdLtyf1LwbUQA,234
|
|
3
|
-
telegrinder/api/api.py,sha256=mPk1c2nsMa-h-OXqym3_Rc1EvOiYgUl0MkATRsav9JU,2970
|
|
4
|
-
telegrinder/api/error.py,sha256=ihRaSW3TrWu5rZ88gHipYjCwEooPpRY540usymHrV_Q,438
|
|
5
|
-
telegrinder/api/response.py,sha256=CDBByRRZca1DoPe1VjdtX7qMeIqaM4YGlHMUe3Lb-lA,511
|
|
6
|
-
telegrinder/api/token.py,sha256=HKkhANMEsFFaUJGWPXnIk5kWDeCod7vngjDpeXEs9Zk,981
|
|
7
|
-
telegrinder/bot/__init__.py,sha256=0ehypMfXoEW8KQnJw2snMkhUVu-HRBSoDKUv_mqXrg4,2843
|
|
8
|
-
telegrinder/bot/bot.py,sha256=8jYTuBfTWuoETqV8kVu6ExSo19F1MGiTACprDMYOX9o,2856
|
|
9
|
-
telegrinder/bot/cute_types/__init__.py,sha256=DOTlHFlZ9BZn9CHSxrdsv4y1KlxzkrAQdKnq8oDUhQA,656
|
|
10
|
-
telegrinder/bot/cute_types/base.py,sha256=qPjGnbZzf0iTYElxARC1qPJNbVrus2t_DHBRajm-NPI,9372
|
|
11
|
-
telegrinder/bot/cute_types/callback_query.py,sha256=RrFanDsvXBBR8IDRCVwsPVo1jaSe9vSVZ37izAZnew0,19254
|
|
12
|
-
telegrinder/bot/cute_types/chat_join_request.py,sha256=dlrV-xOdYB1WrhAI4Me6Mn29Ld4dG_x23bwsmfIxHB8,2062
|
|
13
|
-
telegrinder/bot/cute_types/chat_member_updated.py,sha256=yVeXtpV0ojFWcj781fs6VVmHmAU3potU2EojtpJJ1PA,6496
|
|
14
|
-
telegrinder/bot/cute_types/inline_query.py,sha256=_JBAPPPufUbMUnoECaLHNOeL4RvJR_i61MBbqOJlAM4,1548
|
|
15
|
-
telegrinder/bot/cute_types/message.py,sha256=YbCU6_Unw85M7UCDkhamdC-uN9tVRt9M0JqIKYTl3ss,141490
|
|
16
|
-
telegrinder/bot/cute_types/update.py,sha256=jzbK2Rw13A9SiZTz7Qqiink1eGa_-Djoqoee8PxAW0Q,3999
|
|
17
|
-
telegrinder/bot/cute_types/utils.py,sha256=9Boyud9K689CP91WIKi8dRpu4oIOmvGy0-RDTWWVCA0,2607
|
|
18
|
-
telegrinder/bot/dispatch/__init__.py,sha256=wocTtA1FwSR3QQVVd-EDBwcPJvoYsTy3Ew7RjyAGFBg,2532
|
|
19
|
-
telegrinder/bot/dispatch/abc.py,sha256=TAiB2Y-8FFPwcrAnqXxyvM3srzenB_hDspPrUcByQ5Q,2417
|
|
20
|
-
telegrinder/bot/dispatch/context.py,sha256=33WtroWGQzdeMP4yZzw1LLE6DlnepAWk3YZ2FxJ7iXY,2867
|
|
21
|
-
telegrinder/bot/dispatch/dispatch.py,sha256=YOf9aZyszxi-_qbMACgVmk-9uuGk0KeErwFGek0JO8Y,6596
|
|
22
|
-
telegrinder/bot/dispatch/handler/__init__.py,sha256=0_zu7_y-7JuFoG4IJ67ytnQWb-rFI8M1ZhkXMvJDnIA,924
|
|
23
|
-
telegrinder/bot/dispatch/handler/abc.py,sha256=WdMUflYlGaiXlo54bUJHOl__tJ7SclXUvS2AmbSMt2w,602
|
|
24
|
-
telegrinder/bot/dispatch/handler/audio_reply.py,sha256=XOm13jrILdatfmzofnMj0V2Tww2wtnoJNuKuGaJhqjQ,1402
|
|
25
|
-
telegrinder/bot/dispatch/handler/base.py,sha256=CkJDa9sxQT4LEmomG9f-9aR7a1ltirjtojdOCoGAqtg,1868
|
|
26
|
-
telegrinder/bot/dispatch/handler/document_reply.py,sha256=5yNuU8kkSdDy6h-MuH8DqsD41UVTbvp4ITD6_I3VEFc,1429
|
|
27
|
-
telegrinder/bot/dispatch/handler/func.py,sha256=3hR74l0jhjRKg28wLiBmHY0cy3bXY84v7C-m4R1VNBs,5255
|
|
28
|
-
telegrinder/bot/dispatch/handler/media_group_reply.py,sha256=TVBH_LS4jqPSlAVuGHLGPU_WP6cRHU3FCd0bbVO_smM,1437
|
|
29
|
-
telegrinder/bot/dispatch/handler/message_reply.py,sha256=6L1YxnRJQjrOp1BjaElt-WurmRitjKR8NOAWYAUibNs,1173
|
|
30
|
-
telegrinder/bot/dispatch/handler/photo_reply.py,sha256=GKopcebAQsxVGSTltLXbwdiOCX1QmJoTENZxc4BM5HM,1402
|
|
31
|
-
telegrinder/bot/dispatch/handler/sticker_reply.py,sha256=PnmkSc-J2r_n9-D68EuNWFCXAq6L90T5Q7veklbmZOg,1240
|
|
32
|
-
telegrinder/bot/dispatch/handler/video_reply.py,sha256=e0wRJpq_kmARFOj2VUdY325TT1dMG4JRG1SCFqDD5y8,1402
|
|
33
|
-
telegrinder/bot/dispatch/middleware/__init__.py,sha256=_idz6bOrHqV-ZqLcmy8UlBogn16EizoOXbdJbnuhVNw,99
|
|
34
|
-
telegrinder/bot/dispatch/middleware/abc.py,sha256=Xp4WrdMLoJy84-5YC6pJIATt8icamll9G7jVW0Gpxoc,623
|
|
35
|
-
telegrinder/bot/dispatch/process.py,sha256=ukyuV6bv6HvV6URZe6OM_EyXYPUPwFv4bynukVSeaW4,5151
|
|
36
|
-
telegrinder/bot/dispatch/return_manager/__init__.py,sha256=GxLiidGPdfbRUCnpNzlgK4hFrrOvgnpFSTbfZV-1yOQ,615
|
|
37
|
-
telegrinder/bot/dispatch/return_manager/abc.py,sha256=cbT4HPC_rvQxw8YU_PUgOxTVe582Njk7x16j81FUu44,3779
|
|
38
|
-
telegrinder/bot/dispatch/return_manager/callback_query.py,sha256=jPMcDy1x1IeAubzW1_LpyiIsf-yQ5d3kBOP7RIpGY8M,742
|
|
39
|
-
telegrinder/bot/dispatch/return_manager/inline_query.py,sha256=oy2FWpWlEOW1WfjZBXgRplCCDrNvzlq1udc3wvwa3TM,558
|
|
40
|
-
telegrinder/bot/dispatch/return_manager/message.py,sha256=wdlLZnhI39PSCnSYYRxHmfzhcduTpOKQZv1gyKtSQ4g,1274
|
|
41
|
-
telegrinder/bot/dispatch/view/__init__.py,sha256=Y-ktE-JhtXhJSHmTbBE8OTmIcjfzHxGYtxezcsTk1g4,860
|
|
42
|
-
telegrinder/bot/dispatch/view/abc.py,sha256=3OT4u4V3zvC2uI467q_qJ4q0Gjfk6onvs_yTP0IKUCY,1025
|
|
43
|
-
telegrinder/bot/dispatch/view/base.py,sha256=LGWCp2iPippt_o60Oqq5PkPwkyvcIZZeAjvWVlvz6H0,6710
|
|
44
|
-
telegrinder/bot/dispatch/view/box.py,sha256=fTKcZFRes2g-qm5QBs98v5eqal_g_NBUP6EH1ABJpe4,5659
|
|
45
|
-
telegrinder/bot/dispatch/view/callback_query.py,sha256=JnV06MjMbuzAPxuXnRpIJvUx3vBM1bg88BCqgxuHqjk,636
|
|
46
|
-
telegrinder/bot/dispatch/view/chat_join_request.py,sha256=9qzOBgVdpAEar_q8ffkQ71NEr-zsXbExFRr1wS6fI8U,510
|
|
47
|
-
telegrinder/bot/dispatch/view/chat_member.py,sha256=BqnR6hsnp4qzhSPj2M1SeFl-qGnPT5a5GYNoWImvPzI,1277
|
|
48
|
-
telegrinder/bot/dispatch/view/inline_query.py,sha256=i8TcUvjweY_ZzWgRmFD2NjHjoq-8LsmmVAkMYyUfDt8,590
|
|
49
|
-
telegrinder/bot/dispatch/view/message.py,sha256=7GatdZblgvUpqPCrP2qTc2T21tTeFps8-MQoQkd1FxE,1460
|
|
50
|
-
telegrinder/bot/dispatch/view/raw.py,sha256=sWws4JRJBtuUKjoWU950j0u2zO64g6OSeqzOvOIzat8,3581
|
|
51
|
-
telegrinder/bot/dispatch/waiter_machine/__init__.py,sha256=KKMykYtlwVzFhaHi4gS2gTvTRJ0erTYNcaV6x13pNms,879
|
|
52
|
-
telegrinder/bot/dispatch/waiter_machine/actions.py,sha256=j0B3D-NhjibB_hQkXwRyzn3U4yZTbkfg_DVl4Wcka84,374
|
|
53
|
-
telegrinder/bot/dispatch/waiter_machine/hasher/__init__.py,sha256=CMIZ3Dbe3Lq_5m0OpEmzJ05PGqJ9a5nglRfefdsx0Ik,505
|
|
54
|
-
telegrinder/bot/dispatch/waiter_machine/hasher/callback.py,sha256=smEVKnO5cUyjxgmmJKxuXRuTG4PESYo11QHjOgQlJds,1642
|
|
55
|
-
telegrinder/bot/dispatch/waiter_machine/hasher/hasher.py,sha256=4ExmC-pu7c0sPsOf1u3-ujNVUuIWvy_jv_qtd7wBWFI,1792
|
|
56
|
-
telegrinder/bot/dispatch/waiter_machine/hasher/message.py,sha256=-IWKRbbEU3JQX2ZwPLK2k-fLCUBEPafObAS5ocIfn58,1304
|
|
57
|
-
telegrinder/bot/dispatch/waiter_machine/hasher/state.py,sha256=TketWXkxf4sdpScDLLf_agv3UcRqYLvuNJbEGO8sRWY,638
|
|
58
|
-
telegrinder/bot/dispatch/waiter_machine/machine.py,sha256=NLtmXMbmWRh-_4unD_eQAj2pjwfbOZFtP0Rso11rFwY,6064
|
|
59
|
-
telegrinder/bot/dispatch/waiter_machine/middleware.py,sha256=Kq-GASTSwfzXZYSZKz0vcQGX484Hw1C4ZNDyVqPNm8I,3065
|
|
60
|
-
telegrinder/bot/dispatch/waiter_machine/short_state.py,sha256=dh15Z_A9MLcxTzLLjG4O9GM1GarV0BktKmeyZeTPq6k,2140
|
|
61
|
-
telegrinder/bot/polling/__init__.py,sha256=qlTP6a79XHXkjuGomxzsTeuWKBl7KJERfMlVkKNAP0Q,98
|
|
62
|
-
telegrinder/bot/polling/abc.py,sha256=-hINT-7YGrtKlLE36kBgLb4P-e8Ch1qij9C-6mBZFcg,467
|
|
63
|
-
telegrinder/bot/polling/polling.py,sha256=_yJRHEaMw4kG5q30JD0YmyXKxuhjpoe9tfT4dvho1J8,4898
|
|
64
|
-
telegrinder/bot/rules/__init__.py,sha256=o8SEtPrMgfHOwPw9wyul3RQA_2tBootpHxRGNzgUIpw,2921
|
|
65
|
-
telegrinder/bot/rules/abc.py,sha256=LkUjrCmvYOWTCE4xLmz1iSPE8wHVkADwzncRXMGtYSA,6717
|
|
66
|
-
telegrinder/bot/rules/adapter/__init__.py,sha256=chaAqfsLf4l2-ZGMDLL4LB0Ru1y1IOUDy7aiS9CBEQs,585
|
|
67
|
-
telegrinder/bot/rules/adapter/abc.py,sha256=mymR9Ih0tLf7pTpAs64ekYXNmgKy2n392QXrlK7cDwE,820
|
|
68
|
-
telegrinder/bot/rules/adapter/errors.py,sha256=2iPAQvMRIi-pMKKITvekLi9aOd-TM3raelvD3FtjK3U,78
|
|
69
|
-
telegrinder/bot/rules/adapter/event.py,sha256=BencBsZMKRhYFVS5ZnzdpW_p0_z7fP5nSOqZ2FGeKN8,2482
|
|
70
|
-
telegrinder/bot/rules/adapter/node.py,sha256=4UxhwrfzA_OOAfo2HGm699RsalBCK6Si9pj3ZQVjJK0,1715
|
|
71
|
-
telegrinder/bot/rules/adapter/raw_event.py,sha256=aiRHrXgVjmltDe5DTynSmjk7jhxjk42lItlxPGnaG3A,1010
|
|
72
|
-
telegrinder/bot/rules/adapter/raw_update.py,sha256=GJFn0cQw3xYz5-KPL_c-LJjgVXNjwEJnhsZbIcskKjI,1035
|
|
73
|
-
telegrinder/bot/rules/callback_data.py,sha256=pk6ktceYxPMK6wRkJXwihIQVgXA5EcyZ0BGtQfYiqSY,5724
|
|
74
|
-
telegrinder/bot/rules/chat_join.py,sha256=YMTJSuQe45xnimtWEXadQwp9L-cc20OLmWkpkHeXYqI,1422
|
|
75
|
-
telegrinder/bot/rules/command.py,sha256=MTuLi9yvsYm3u-vScQpN9dhnXrt5VAhGXnriIUJgiUc,4032
|
|
76
|
-
telegrinder/bot/rules/enum_text.py,sha256=4463aLPCFdSHfWSyDcg4Wp8Io9-6Zia86PjAoKTPB8A,1004
|
|
77
|
-
telegrinder/bot/rules/func.py,sha256=7yIajHqOAf1oCOlEiHlQ6Iete3AmqwXbJVkg90G9AOc,795
|
|
78
|
-
telegrinder/bot/rules/fuzzy.py,sha256=0-1bKQz9XaaFNGibr8ajzIkgLX0rNlzt0DiHiQkwY70,694
|
|
79
|
-
telegrinder/bot/rules/inline.py,sha256=e21SLCbJ8CpAxxIBU_-L9te6fU4mlQcqULoUqJqInFM,1984
|
|
80
|
-
telegrinder/bot/rules/integer.py,sha256=K4pB7ai5K0nANr5lRetPjX12aM4xaJnfMQJrtG0oVKw,449
|
|
81
|
-
telegrinder/bot/rules/is_from.py,sha256=aDtkIplB7Y9lVPIhnCgzV-KyjAslotr0OBwIsIpL7Fk,3827
|
|
82
|
-
telegrinder/bot/rules/markup.py,sha256=wmuxpf3sKm57CNoTlhcdBSeCFwuTkmYZev30a7K2RWM,1371
|
|
83
|
-
telegrinder/bot/rules/mention.py,sha256=O6XCn2vGYQfcWeFoDBF0BAmuj3xnxwz9iOjzb8rsbGQ,443
|
|
84
|
-
telegrinder/bot/rules/message.py,sha256=adiemKb5-36C71Dkjl1uSFx6Tg75lLW0WSQ3887-ipI,443
|
|
85
|
-
telegrinder/bot/rules/message_entities.py,sha256=YOXwOdMpBXtwR4Kdws6oB_8nG9McGtO-rWDKEMIZK4M,1120
|
|
86
|
-
telegrinder/bot/rules/node.py,sha256=-ISIbcWfRnI2EBCacXKIxgtWwutKEp8JiTQMHdUSqm4,913
|
|
87
|
-
telegrinder/bot/rules/regex.py,sha256=vJnemvmpZF5rnNztwUWPDl648VZoDyVVcInhhz3uxt4,1184
|
|
88
|
-
telegrinder/bot/rules/rule_enum.py,sha256=j_UUzqGDQeIVcOpqsdEz8Q8Y0LXi-qGodOLi284LGUw,2185
|
|
89
|
-
telegrinder/bot/rules/start.py,sha256=b3Hu6pXdLyce0V1wB_fH47JkaST101QGrYD0ig3EDVw,1189
|
|
90
|
-
telegrinder/bot/rules/state.py,sha256=MowXfMU--P4yNT6fIVrsmt_WkKGbJiYPOnXdsEuuDeU,1012
|
|
91
|
-
telegrinder/bot/rules/text.py,sha256=IbV1UZpv1PPH_LIxxsTyDSeL0vPp_2Xfpb4uKkv0uz0,1020
|
|
92
|
-
telegrinder/bot/rules/update.py,sha256=ZVGFYZAfHJiZDvGAmMRO5-6UyvUC1oK-L8ALT_rKHqs,407
|
|
93
|
-
telegrinder/bot/scenario/__init__.py,sha256=58ra33fBW1kXpYNUuG7nXmQ6gUq-K31gOlw-Ek119fk,141
|
|
94
|
-
telegrinder/bot/scenario/abc.py,sha256=ss47_F94jRVyDiR9goZtxF0fd9z-fZ3xUN6f1rtZpeg,487
|
|
95
|
-
telegrinder/bot/scenario/checkbox.py,sha256=dGoFetAlG-qlxurPi5CwRmilPGTdLoWIvwv3a90SxM4,5485
|
|
96
|
-
telegrinder/bot/scenario/choice.py,sha256=fdq8nGbs8oxDGtO5MLp7tVRB9qdjXEFRlFaEsTxThlc,1934
|
|
97
|
-
telegrinder/client/__init__.py,sha256=35i5ZX-IiG47edibNJ85BZ1Ot-jzxBPYd4bfetnKTGo,108
|
|
98
|
-
telegrinder/client/abc.py,sha256=sfASPAQnFjxwc_mHU4AE0ombi3h_bOM2RIJK4eUXToE,1686
|
|
99
|
-
telegrinder/client/aiohttp.py,sha256=d03xdEFyb9KUwwAD20_78_MT_EHm4J2LnR3v9Lw_mNQ,4033
|
|
100
|
-
telegrinder/model.py,sha256=64RZ5PDnz2O5NwIRX3c4Hs37Talvqfl2jKoQS7KWNK4,9611
|
|
101
|
-
telegrinder/modules.py,sha256=oFr-spy7SNyAo2l5GPbAngHEz1RsiP4u0TcLhkdFfPc,8014
|
|
102
|
-
telegrinder/msgspec_json.py,sha256=EiSSTpY9P8HYXBegEdQIYyZrLLDaUlP0RuwD2CiHrRQ,251
|
|
103
|
-
telegrinder/msgspec_utils.py,sha256=LuLsHQ5MZIn2A_EVpMzM1_tDUiw6boGiBmVuA8wlqTs,12784
|
|
104
|
-
telegrinder/node/__init__.py,sha256=xWkr826MWHbX411eebMXJqr6yTFv8pVWTl75FXJGxGM,1510
|
|
105
|
-
telegrinder/node/attachment.py,sha256=E-btA8w6p16jta2aQ9Jfo7wknUZ1-RA48cRovaQib3Q,3112
|
|
106
|
-
telegrinder/node/base.py,sha256=OXNdlLef3kbOa6rxFIUa7k1_tlspLRpARpnHH_8HYUA,4674
|
|
107
|
-
telegrinder/node/callback_query.py,sha256=UrkmMXhgs8ZU1mzqwizRkbQCKgtAHVZXADqbaIU86BY,1784
|
|
108
|
-
telegrinder/node/command.py,sha256=0Cx7FCOaov93p1coln8LI0mOJvn8eZ7pzVYBRr8sMGU,940
|
|
109
|
-
telegrinder/node/composer.py,sha256=DLqzcJdWx-N_QoPFCIzzX52TsZFgDS-nCVt4PM2RySw,6974
|
|
110
|
-
telegrinder/node/container.py,sha256=GiNAiPbxT7uFomh0Z-87mSUstorzEXQhLmOTaR-SI04,862
|
|
111
|
-
telegrinder/node/event.py,sha256=Fe6C4144O0Wfr5plZ_OmWlNQC36MdAC6QDS3I8qn1sE,2180
|
|
112
|
-
telegrinder/node/me.py,sha256=x-AiDDVcrRiIRcPzIDUiDf8IUQ7zVJeqe-IrjblDUzo,433
|
|
113
|
-
telegrinder/node/message.py,sha256=muV0q-AHwBM87Qf8VyQImq1-O1CjFqH3mdflxBchJtE,457
|
|
114
|
-
telegrinder/node/polymorphic.py,sha256=Khu0fQCVoEzTGeQGzrj4W5gl24LuOmj6ey7vsQRw_2Y,2075
|
|
115
|
-
telegrinder/node/rule.py,sha256=s-b-MI249inZ-XuaUYyUGNdC6gteYHzs8NUGfLQwW7w,2582
|
|
116
|
-
telegrinder/node/scope.py,sha256=UhTboN58VWYtvKHaC94Y00oTjl4-Ed9DpfO0-brGKaE,746
|
|
117
|
-
telegrinder/node/source.py,sha256=1GABGwaweUNN6wLa2XvfB_nU9u5zzdTTo1rv5cFOcho,2362
|
|
118
|
-
telegrinder/node/text.py,sha256=v7zySk4hsd7tsX0xR0jil5IRZ3UNOvoo4ZbI4fN6MRs,1115
|
|
119
|
-
telegrinder/node/tools/__init__.py,sha256=d4_cDojrnqPQO679ivcjsjS8XihgDoyIVJ9HfzADrX8,70
|
|
120
|
-
telegrinder/node/tools/generator.py,sha256=FbZaVS6Ca7fA1oY0majtcXihmv6ujA8l-ViaLUeatvo,1142
|
|
121
|
-
telegrinder/node/update.py,sha256=G85RcMP84ZRZVLLZIlhJPiF4OHtzQUHm_ZBg_nP1WQg,462
|
|
122
|
-
telegrinder/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
|
-
telegrinder/rules.py,sha256=pUebyJZ62k_0TtdYmkAnoP28I5zTpl2HX3NY9s13FMA,1150
|
|
124
|
-
telegrinder/tools/__init__.py,sha256=N6R8AY9W9UCHdhIlfEeJRXIzBk6pah2K5S0tmw20iow,3051
|
|
125
|
-
telegrinder/tools/buttons.py,sha256=TVAsIp9WtM9ej0T78YrZuMpeMOLqksqvXgUiXI5etMo,3019
|
|
126
|
-
telegrinder/tools/error_handler/__init__.py,sha256=gJ4ViIIaBPxcwMtmGSwrA4DyhVDD_jl6uBYXEuAItG0,214
|
|
127
|
-
telegrinder/tools/error_handler/abc.py,sha256=AXgQKUydQE6ptKAkcnZ50h0kZlb7_6ss5UzQWnp6G58,894
|
|
128
|
-
telegrinder/tools/error_handler/error.py,sha256=Mxb9rbgGRKvAZvOPISpakhWVgZyOYVH0Nl8sptK5WXI,230
|
|
129
|
-
telegrinder/tools/error_handler/error_handler.py,sha256=oLkCR3AgMNkagpnfVdVApvaRjf5UN2jUtsb5O39fBOk,6903
|
|
130
|
-
telegrinder/tools/formatting/__init__.py,sha256=P6qactyCtFl8CWQOWnCXGUVL6XpYNMwgSjjwIb7gy6o,1505
|
|
131
|
-
telegrinder/tools/formatting/html.py,sha256=3Glojk4QePvLUXNIQle_9jVAQFt1FVImhVzMLJiF5oQ,8993
|
|
132
|
-
telegrinder/tools/formatting/links.py,sha256=SxN7ar7PWVWJ55iX220Rvr_GY9nxmtvNUAbdP5_F_uM,1145
|
|
133
|
-
telegrinder/tools/formatting/spec_html_formats.py,sha256=GNzZTaqzObsV6tyrdbMjvd7OE1iaCYPjyGk2ReYtJ6M,2728
|
|
134
|
-
telegrinder/tools/functional.py,sha256=7O8koJN0MEqI0SiQlrWBhlVM5JXW-GluIsbqoBmNRi8,235
|
|
135
|
-
telegrinder/tools/global_context/__init__.py,sha256=R3HEfdB33I5VTWOK52BS1H9isEaTMg0tBFQWM94Ek2w,297
|
|
136
|
-
telegrinder/tools/global_context/abc.py,sha256=0dM_rgzW358GztM3Hi9PGUTIiGjN3AGa9E3o35fQfr4,1707
|
|
137
|
-
telegrinder/tools/global_context/global_context.py,sha256=FWMjkM6sP0F9x12CySs1HPSp9YbzJZNjrSto7FkV8QA,14091
|
|
138
|
-
telegrinder/tools/global_context/telegrinder_ctx.py,sha256=OvBKOHWDeU2V5fNPxWUF9FwtQCSbCVMoIFT34yGfsGU,751
|
|
139
|
-
telegrinder/tools/i18n/__init__.py,sha256=XfbMa7pbRy8JEqAJOIRtQbw47gX5aZfQZJfccOmDeIk,294
|
|
140
|
-
telegrinder/tools/i18n/abc.py,sha256=t2L0fAChErXn73CPxu788XVv5_Q3x4KP_5Rz9UniEp0,756
|
|
141
|
-
telegrinder/tools/i18n/middleware/__init__.py,sha256=EP1Hffa974GHtikWdhq8dg1B7IK0zMHGmCN8LdaJpKI,84
|
|
142
|
-
telegrinder/tools/i18n/middleware/abc.py,sha256=yhKwIvAwZgah93oTzHLR8zwY6ohvFNIEf_0ZppaIjOg,752
|
|
143
|
-
telegrinder/tools/i18n/simple.py,sha256=kULi54SZpGSj1DUDuuTxWnVDrfMFmYZb2EX2TtR8DZQ,1607
|
|
144
|
-
telegrinder/tools/kb_set/__init__.py,sha256=aZsnFPUgWrp6kcZbfqwbrccNY9i-kcu33092q1z6lzo,160
|
|
145
|
-
telegrinder/tools/kb_set/base.py,sha256=YzYYJhw1WHS2ckn9xzyS7ThfEObYVcWhitW9d99BegE,258
|
|
146
|
-
telegrinder/tools/kb_set/yaml.py,sha256=xqdrEGUnWwaQeIpmVIPxm5NyZkHRlEDB9SkeOFoPJIU,2070
|
|
147
|
-
telegrinder/tools/keyboard.py,sha256=VxOokXOBtQo1Gb2KhrWTPBofCiCXrrzjWCtfRUcz5mc,4002
|
|
148
|
-
telegrinder/tools/limited_dict.py,sha256=ZONfFl9VO9EcNDqLEwIgTgkrQ1uubb9DUAOBhB3_qSo,1115
|
|
149
|
-
telegrinder/tools/loop_wrapper/__init__.py,sha256=0YxHL_Dbl6_WNTrVv2tA4rkEKQeYq_kTOTPSbc41LrA,169
|
|
150
|
-
telegrinder/tools/loop_wrapper/abc.py,sha256=EzLCJabycnFM5-YoMfPkotSyaRZ8YT_ngyDC0xxbf6c,281
|
|
151
|
-
telegrinder/tools/loop_wrapper/loop_wrapper.py,sha256=gUrfD8eosNbni3ATZMTaYnEZAsak7djq7i_G-TWG7qQ,7271
|
|
152
|
-
telegrinder/tools/magic.py,sha256=R5zO8iuK7qVzbbPnvn2SdR8RU5klTNyWjbnDc13k7YI,4754
|
|
153
|
-
telegrinder/tools/parse_mode.py,sha256=MkR7r7f0JoWVgakdha1040REvRjs7LClHmClJ0u9DIE,98
|
|
154
|
-
telegrinder/tools/state_storage/__init__.py,sha256=VUAaDARf8q5Bikso1Mjbo2FzJeJQa5tTiuqIRkmxkMk,215
|
|
155
|
-
telegrinder/tools/state_storage/abc.py,sha256=ldyhHuqCu5rUXW6A-0BfsZFhr3n6e6CQw__IZ1NWXds,993
|
|
156
|
-
telegrinder/tools/state_storage/memory.py,sha256=T5ahcVPkj8qmTHEApNxZt_pxS7J4lbDbhNv0C_M8FxA,778
|
|
157
|
-
telegrinder/types/__init__.py,sha256=UxWtp8NgKkO_CEW_w2UN6Bs-OGScO9xlOGv6pGzJ1Hg,6898
|
|
158
|
-
telegrinder/types/enums.py,sha256=iMMBbVOgY7PuDVkYwlKXuRnz9WNRCLHOzTrGK3d89CQ,19718
|
|
159
|
-
telegrinder/types/methods.py,sha256=zA7gcWofIXFKkLNLmMhO3OSL06F4DP-HUJVZ-iaIgGA,205944
|
|
160
|
-
telegrinder/types/objects.py,sha256=JErmyX3qHDc2XHBVGLk-EgO-snoPKUUG4xRY3pTpCdI,299392
|
|
161
|
-
telegrinder/verification_utils.py,sha256=w9yLyY2QSTcJjlDfP2LGv3S5FSgwOIaW-VIuXvpcCiE,1019
|
|
162
|
-
telegrinder-0.3.4.dist-info/LICENSE,sha256=vBdntfovExgMLJP9OgGiqhH1bA6vKodGeeU3RwjeCWI,1117
|
|
163
|
-
telegrinder-0.3.4.dist-info/METADATA,sha256=f7tpCPD_v7SXQr3IkB_AaR1FMcTE08jm2C9QijHxY9I,3143
|
|
164
|
-
telegrinder-0.3.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
165
|
-
telegrinder-0.3.4.dist-info/RECORD,,
|