telegrinder 0.3.1__py3-none-any.whl → 0.3.3__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.

Files changed (164) hide show
  1. telegrinder/__init__.py +144 -144
  2. telegrinder/api/__init__.py +8 -8
  3. telegrinder/api/api.py +93 -93
  4. telegrinder/api/error.py +16 -16
  5. telegrinder/api/response.py +20 -20
  6. telegrinder/api/token.py +36 -36
  7. telegrinder/bot/__init__.py +66 -66
  8. telegrinder/bot/bot.py +76 -76
  9. telegrinder/bot/cute_types/__init__.py +17 -17
  10. telegrinder/bot/cute_types/base.py +258 -234
  11. telegrinder/bot/cute_types/callback_query.py +385 -382
  12. telegrinder/bot/cute_types/chat_join_request.py +61 -61
  13. telegrinder/bot/cute_types/chat_member_updated.py +160 -160
  14. telegrinder/bot/cute_types/inline_query.py +43 -53
  15. telegrinder/bot/cute_types/message.py +2637 -2631
  16. telegrinder/bot/cute_types/update.py +109 -75
  17. telegrinder/bot/cute_types/utils.py +95 -95
  18. telegrinder/bot/dispatch/__init__.py +55 -55
  19. telegrinder/bot/dispatch/abc.py +77 -77
  20. telegrinder/bot/dispatch/context.py +98 -92
  21. telegrinder/bot/dispatch/dispatch.py +202 -201
  22. telegrinder/bot/dispatch/handler/__init__.py +13 -13
  23. telegrinder/bot/dispatch/handler/abc.py +24 -24
  24. telegrinder/bot/dispatch/handler/audio_reply.py +44 -44
  25. telegrinder/bot/dispatch/handler/base.py +57 -57
  26. telegrinder/bot/dispatch/handler/document_reply.py +44 -44
  27. telegrinder/bot/dispatch/handler/func.py +135 -123
  28. telegrinder/bot/dispatch/handler/media_group_reply.py +43 -43
  29. telegrinder/bot/dispatch/handler/message_reply.py +36 -36
  30. telegrinder/bot/dispatch/handler/photo_reply.py +44 -44
  31. telegrinder/bot/dispatch/handler/sticker_reply.py +37 -37
  32. telegrinder/bot/dispatch/handler/video_reply.py +44 -44
  33. telegrinder/bot/dispatch/middleware/__init__.py +3 -3
  34. telegrinder/bot/dispatch/middleware/abc.py +16 -16
  35. telegrinder/bot/dispatch/process.py +132 -132
  36. telegrinder/bot/dispatch/return_manager/__init__.py +13 -13
  37. telegrinder/bot/dispatch/return_manager/abc.py +108 -108
  38. telegrinder/bot/dispatch/return_manager/callback_query.py +20 -20
  39. telegrinder/bot/dispatch/return_manager/inline_query.py +15 -15
  40. telegrinder/bot/dispatch/return_manager/message.py +36 -36
  41. telegrinder/bot/dispatch/view/__init__.py +13 -13
  42. telegrinder/bot/dispatch/view/abc.py +41 -41
  43. telegrinder/bot/dispatch/view/base.py +200 -211
  44. telegrinder/bot/dispatch/view/box.py +129 -129
  45. telegrinder/bot/dispatch/view/callback_query.py +17 -17
  46. telegrinder/bot/dispatch/view/chat_join_request.py +16 -16
  47. telegrinder/bot/dispatch/view/chat_member.py +39 -39
  48. telegrinder/bot/dispatch/view/inline_query.py +17 -17
  49. telegrinder/bot/dispatch/view/message.py +44 -44
  50. telegrinder/bot/dispatch/view/raw.py +114 -118
  51. telegrinder/bot/dispatch/waiter_machine/__init__.py +17 -17
  52. telegrinder/bot/dispatch/waiter_machine/actions.py +13 -13
  53. telegrinder/bot/dispatch/waiter_machine/hasher/__init__.py +8 -8
  54. telegrinder/bot/dispatch/waiter_machine/hasher/callback.py +55 -55
  55. telegrinder/bot/dispatch/waiter_machine/hasher/hasher.py +57 -57
  56. telegrinder/bot/dispatch/waiter_machine/hasher/message.py +51 -51
  57. telegrinder/bot/dispatch/waiter_machine/hasher/state.py +19 -19
  58. telegrinder/bot/dispatch/waiter_machine/machine.py +167 -170
  59. telegrinder/bot/dispatch/waiter_machine/middleware.py +89 -89
  60. telegrinder/bot/dispatch/waiter_machine/short_state.py +68 -65
  61. telegrinder/bot/polling/__init__.py +4 -4
  62. telegrinder/bot/polling/abc.py +25 -25
  63. telegrinder/bot/polling/polling.py +131 -131
  64. telegrinder/bot/rules/__init__.py +62 -62
  65. telegrinder/bot/rules/abc.py +213 -238
  66. telegrinder/bot/rules/adapter/__init__.py +9 -9
  67. telegrinder/bot/rules/adapter/abc.py +29 -29
  68. telegrinder/bot/rules/adapter/errors.py +5 -5
  69. telegrinder/bot/rules/adapter/event.py +67 -76
  70. telegrinder/bot/rules/adapter/node.py +48 -48
  71. telegrinder/bot/rules/adapter/raw_update.py +30 -30
  72. telegrinder/bot/rules/callback_data.py +170 -171
  73. telegrinder/bot/rules/chat_join.py +46 -48
  74. telegrinder/bot/rules/command.py +126 -126
  75. telegrinder/bot/rules/enum_text.py +36 -36
  76. telegrinder/bot/rules/func.py +26 -26
  77. telegrinder/bot/rules/fuzzy.py +24 -24
  78. telegrinder/bot/rules/inline.py +60 -60
  79. telegrinder/bot/rules/integer.py +20 -20
  80. telegrinder/bot/rules/is_from.py +127 -127
  81. telegrinder/bot/rules/markup.py +43 -43
  82. telegrinder/bot/rules/mention.py +14 -14
  83. telegrinder/bot/rules/message.py +17 -17
  84. telegrinder/bot/rules/message_entities.py +35 -35
  85. telegrinder/bot/rules/node.py +27 -27
  86. telegrinder/bot/rules/regex.py +37 -37
  87. telegrinder/bot/rules/rule_enum.py +72 -72
  88. telegrinder/bot/rules/start.py +42 -42
  89. telegrinder/bot/rules/state.py +37 -37
  90. telegrinder/bot/rules/text.py +33 -33
  91. telegrinder/bot/rules/update.py +15 -15
  92. telegrinder/bot/scenario/__init__.py +5 -5
  93. telegrinder/bot/scenario/abc.py +19 -19
  94. telegrinder/bot/scenario/checkbox.py +167 -147
  95. telegrinder/bot/scenario/choice.py +46 -44
  96. telegrinder/client/__init__.py +4 -4
  97. telegrinder/client/abc.py +75 -75
  98. telegrinder/client/aiohttp.py +130 -130
  99. telegrinder/model.py +295 -244
  100. telegrinder/modules.py +237 -237
  101. telegrinder/msgspec_json.py +14 -14
  102. telegrinder/msgspec_utils.py +410 -410
  103. telegrinder/node/__init__.py +7 -3
  104. telegrinder/node/attachment.py +87 -87
  105. telegrinder/node/base.py +166 -144
  106. telegrinder/node/callback_query.py +53 -14
  107. telegrinder/node/command.py +33 -33
  108. telegrinder/node/composer.py +198 -184
  109. telegrinder/node/container.py +27 -27
  110. telegrinder/node/event.py +65 -73
  111. telegrinder/node/me.py +16 -16
  112. telegrinder/node/message.py +14 -14
  113. telegrinder/node/polymorphic.py +48 -52
  114. telegrinder/node/rule.py +76 -76
  115. telegrinder/node/scope.py +38 -38
  116. telegrinder/node/source.py +71 -71
  117. telegrinder/node/text.py +41 -21
  118. telegrinder/node/tools/__init__.py +3 -3
  119. telegrinder/node/tools/generator.py +40 -40
  120. telegrinder/node/update.py +15 -15
  121. telegrinder/rules.py +0 -0
  122. telegrinder/tools/__init__.py +74 -74
  123. telegrinder/tools/buttons.py +79 -79
  124. telegrinder/tools/error_handler/__init__.py +7 -7
  125. telegrinder/tools/error_handler/abc.py +33 -33
  126. telegrinder/tools/error_handler/error.py +9 -9
  127. telegrinder/tools/error_handler/error_handler.py +193 -193
  128. telegrinder/tools/formatting/__init__.py +46 -46
  129. telegrinder/tools/formatting/html.py +283 -283
  130. telegrinder/tools/formatting/links.py +33 -33
  131. telegrinder/tools/formatting/spec_html_formats.py +111 -111
  132. telegrinder/tools/functional.py +12 -12
  133. telegrinder/tools/global_context/__init__.py +7 -7
  134. telegrinder/tools/global_context/abc.py +63 -63
  135. telegrinder/tools/global_context/global_context.py +412 -412
  136. telegrinder/tools/global_context/telegrinder_ctx.py +27 -27
  137. telegrinder/tools/i18n/__init__.py +7 -7
  138. telegrinder/tools/i18n/abc.py +30 -30
  139. telegrinder/tools/i18n/middleware/__init__.py +3 -3
  140. telegrinder/tools/i18n/middleware/abc.py +25 -25
  141. telegrinder/tools/i18n/simple.py +43 -43
  142. telegrinder/tools/kb_set/__init__.py +4 -4
  143. telegrinder/tools/kb_set/base.py +15 -15
  144. telegrinder/tools/kb_set/yaml.py +63 -63
  145. telegrinder/tools/keyboard.py +132 -132
  146. telegrinder/tools/limited_dict.py +37 -37
  147. telegrinder/tools/loop_wrapper/__init__.py +4 -4
  148. telegrinder/tools/loop_wrapper/abc.py +15 -15
  149. telegrinder/tools/loop_wrapper/loop_wrapper.py +224 -216
  150. telegrinder/tools/magic.py +157 -157
  151. telegrinder/tools/parse_mode.py +6 -6
  152. telegrinder/tools/state_storage/__init__.py +4 -4
  153. telegrinder/tools/state_storage/abc.py +35 -35
  154. telegrinder/tools/state_storage/memory.py +25 -25
  155. telegrinder/types/__init__.py +260 -260
  156. telegrinder/types/enums.py +701 -701
  157. telegrinder/types/methods.py +4633 -4633
  158. telegrinder/types/objects.py +8561 -6541
  159. telegrinder/verification_utils.py +32 -32
  160. {telegrinder-0.3.1.dist-info → telegrinder-0.3.3.dist-info}/LICENSE +22 -22
  161. {telegrinder-0.3.1.dist-info → telegrinder-0.3.3.dist-info}/METADATA +1 -1
  162. telegrinder-0.3.3.dist-info/RECORD +164 -0
  163. telegrinder-0.3.1.dist-info/RECORD +0 -164
  164. {telegrinder-0.3.1.dist-info → telegrinder-0.3.3.dist-info}/WHEEL +0 -0
@@ -1,32 +1,32 @@
1
- import hashlib
2
- import hmac
3
- import typing
4
-
5
-
6
- def verify_webapp_request(
7
- secret_token: str,
8
- request_headers: typing.Mapping[str, typing.Any],
9
- ) -> bool:
10
- """Verifies update request is from telegram."""
11
-
12
- return request_headers.get("X-Telegram-Bot-Api-Secret-Token") == secret_token
13
-
14
-
15
- def webapp_validate_request(
16
- bot_token: str,
17
- request_query_params: typing.Mapping[str, typing.Any],
18
- ) -> bool:
19
- """Verifies authentity of webapp request by counting hash of its parameters."""
20
-
21
- items = sorted(request_query_params.items(), key=lambda kv: kv[0])
22
- data_check_string = "\n".join(f"{k}={param}" for k, param in items if k != "hash")
23
- secret = hmac.new(
24
- "WebAppData".encode(),
25
- bot_token.encode(),
26
- hashlib.sha256,
27
- ).digest()
28
- data_chk = hmac.new(secret, data_check_string.encode(), hashlib.sha256)
29
- return data_chk.hexdigest() == request_query_params.get("hash")
30
-
31
-
32
- __all__ = ("verify_webapp_request", "webapp_validate_request")
1
+ import hashlib
2
+ import hmac
3
+ import typing
4
+
5
+
6
+ def verify_webapp_request(
7
+ secret_token: str,
8
+ request_headers: typing.Mapping[str, typing.Any],
9
+ ) -> bool:
10
+ """Verifies update request is from telegram."""
11
+
12
+ return request_headers.get("X-Telegram-Bot-Api-Secret-Token") == secret_token
13
+
14
+
15
+ def webapp_validate_request(
16
+ bot_token: str,
17
+ request_query_params: typing.Mapping[str, typing.Any],
18
+ ) -> bool:
19
+ """Verifies authentity of webapp request by counting hash of its parameters."""
20
+
21
+ items = sorted(request_query_params.items(), key=lambda kv: kv[0])
22
+ data_check_string = "\n".join(f"{k}={param}" for k, param in items if k != "hash")
23
+ secret = hmac.new(
24
+ "WebAppData".encode(),
25
+ bot_token.encode(),
26
+ hashlib.sha256,
27
+ ).digest()
28
+ data_chk = hmac.new(secret, data_check_string.encode(), hashlib.sha256)
29
+ return data_chk.hexdigest() == request_query_params.get("hash")
30
+
31
+
32
+ __all__ = ("verify_webapp_request", "webapp_validate_request")
@@ -1,22 +1,22 @@
1
- MIT License
2
-
3
- Copyright (c) 2022-2024 timoniq
4
- Copyright (c) 2024 luwqz1
5
-
6
- Permission is hereby granted, free of charge, to any person obtaining a copy
7
- of this software and associated documentation files (the "Software"), to deal
8
- in the Software without restriction, including without limitation the rights
9
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- copies of the Software, and to permit persons to whom the Software is
11
- furnished to do so, subject to the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be included in all
14
- copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2022-2024 timoniq
4
+ Copyright (c) 2024 luwqz1
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: telegrinder
3
- Version: 0.3.1
3
+ Version: 0.3.3
4
4
  Summary: Modern visionary telegram bot framework.
5
5
  Home-page: https://github.com/timoniq/telegrinder
6
6
  License: MIT
@@ -0,0 +1,164 @@
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=fB6mNayMaG0xrorQVMtnVkHZoVxhT56rbapihMtV1tI,4166
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=Ir8-W1Jmj3-cJMj_JLhzOsLlnXK-WOYCE-zg_vMNtR8,429
35
+ telegrinder/bot/dispatch/process.py,sha256=GKc9GNtEOTt01xypNhzl0bDaDtMx817ySmT7X_Xc3go,4338
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=DwnJajbds68QVSSPBRKrs4JLyuk1tto84C3KLS9wNy8,5793
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=y4BIbY5CFQt3n_eyoXxP20N3s4YTASCxNAoMr4RIfiY,6724
66
+ telegrinder/bot/rules/adapter/__init__.py,sha256=k_liu7lgb4f7zDyhDE9eLEpy9VXm9U-8tl8uXGeNSzw,454
67
+ telegrinder/bot/rules/adapter/abc.py,sha256=TvtSoAGKyVEo9mn12ekEcByKRI4DXDX84Tq4b3Rxrnc,715
68
+ telegrinder/bot/rules/adapter/errors.py,sha256=2iPAQvMRIi-pMKKITvekLi9aOd-TM3raelvD3FtjK3U,78
69
+ telegrinder/bot/rules/adapter/event.py,sha256=1Dt1CAtyOreS8FT1llVCaA_rPV8P2b2MaakFFXtSSHY,2754
70
+ telegrinder/bot/rules/adapter/node.py,sha256=4UxhwrfzA_OOAfo2HGm699RsalBCK6Si9pj3ZQVjJK0,1715
71
+ telegrinder/bot/rules/adapter/raw_update.py,sha256=pZj23PQvdFbljVWYXhYzBs8NUqVIi0vwfMi6PRoF8LI,1041
72
+ telegrinder/bot/rules/callback_data.py,sha256=4TfSDUVnKj676gHW17DUvKnSul4E6vWHRQV_MU3MpW0,5731
73
+ telegrinder/bot/rules/chat_join.py,sha256=OO8yUBCLG9gbUqbwYAJ2NG8YRbt7ivVEXk1Vni3wrqs,1425
74
+ telegrinder/bot/rules/command.py,sha256=MTuLi9yvsYm3u-vScQpN9dhnXrt5VAhGXnriIUJgiUc,4032
75
+ telegrinder/bot/rules/enum_text.py,sha256=4463aLPCFdSHfWSyDcg4Wp8Io9-6Zia86PjAoKTPB8A,1004
76
+ telegrinder/bot/rules/func.py,sha256=7yIajHqOAf1oCOlEiHlQ6Iete3AmqwXbJVkg90G9AOc,795
77
+ telegrinder/bot/rules/fuzzy.py,sha256=0-1bKQz9XaaFNGibr8ajzIkgLX0rNlzt0DiHiQkwY70,694
78
+ telegrinder/bot/rules/inline.py,sha256=FFa0-s84S9y7IhVxkFvXjPNrTSoyFG2cRxXSSd7RES4,1988
79
+ telegrinder/bot/rules/integer.py,sha256=K4pB7ai5K0nANr5lRetPjX12aM4xaJnfMQJrtG0oVKw,449
80
+ telegrinder/bot/rules/is_from.py,sha256=aDtkIplB7Y9lVPIhnCgzV-KyjAslotr0OBwIsIpL7Fk,3827
81
+ telegrinder/bot/rules/markup.py,sha256=wmuxpf3sKm57CNoTlhcdBSeCFwuTkmYZev30a7K2RWM,1371
82
+ telegrinder/bot/rules/mention.py,sha256=O6XCn2vGYQfcWeFoDBF0BAmuj3xnxwz9iOjzb8rsbGQ,443
83
+ telegrinder/bot/rules/message.py,sha256=adiemKb5-36C71Dkjl1uSFx6Tg75lLW0WSQ3887-ipI,443
84
+ telegrinder/bot/rules/message_entities.py,sha256=YOXwOdMpBXtwR4Kdws6oB_8nG9McGtO-rWDKEMIZK4M,1120
85
+ telegrinder/bot/rules/node.py,sha256=-ISIbcWfRnI2EBCacXKIxgtWwutKEp8JiTQMHdUSqm4,913
86
+ telegrinder/bot/rules/regex.py,sha256=vJnemvmpZF5rnNztwUWPDl648VZoDyVVcInhhz3uxt4,1184
87
+ telegrinder/bot/rules/rule_enum.py,sha256=j_UUzqGDQeIVcOpqsdEz8Q8Y0LXi-qGodOLi284LGUw,2185
88
+ telegrinder/bot/rules/start.py,sha256=b3Hu6pXdLyce0V1wB_fH47JkaST101QGrYD0ig3EDVw,1189
89
+ telegrinder/bot/rules/state.py,sha256=MowXfMU--P4yNT6fIVrsmt_WkKGbJiYPOnXdsEuuDeU,1012
90
+ telegrinder/bot/rules/text.py,sha256=IbV1UZpv1PPH_LIxxsTyDSeL0vPp_2Xfpb4uKkv0uz0,1020
91
+ telegrinder/bot/rules/update.py,sha256=ZVGFYZAfHJiZDvGAmMRO5-6UyvUC1oK-L8ALT_rKHqs,407
92
+ telegrinder/bot/scenario/__init__.py,sha256=58ra33fBW1kXpYNUuG7nXmQ6gUq-K31gOlw-Ek119fk,141
93
+ telegrinder/bot/scenario/abc.py,sha256=ss47_F94jRVyDiR9goZtxF0fd9z-fZ3xUN6f1rtZpeg,487
94
+ telegrinder/bot/scenario/checkbox.py,sha256=kyBHrBQfvV2BaUx_f_3cFTYRscV4CsniwNNuDMIICkQ,5314
95
+ telegrinder/bot/scenario/choice.py,sha256=e4OwihvAGnz38hfpPAbxBZA2v7N8X3_4jEdPK1vm0qg,1655
96
+ telegrinder/client/__init__.py,sha256=35i5ZX-IiG47edibNJ85BZ1Ot-jzxBPYd4bfetnKTGo,108
97
+ telegrinder/client/abc.py,sha256=sfASPAQnFjxwc_mHU4AE0ombi3h_bOM2RIJK4eUXToE,1686
98
+ telegrinder/client/aiohttp.py,sha256=d03xdEFyb9KUwwAD20_78_MT_EHm4J2LnR3v9Lw_mNQ,4033
99
+ telegrinder/model.py,sha256=GJjlr3CBqGSKoDDyowNbmwM4G50xp2LOeBdwnKmJLHs,8781
100
+ telegrinder/modules.py,sha256=gdV2w66QCrl1gDWbILZmwV1V-aeZCZUTyBtk738SX28,7980
101
+ telegrinder/msgspec_json.py,sha256=EiSSTpY9P8HYXBegEdQIYyZrLLDaUlP0RuwD2CiHrRQ,251
102
+ telegrinder/msgspec_utils.py,sha256=CpZOMJp4Q0jzJ3hkpSeJ2LYGuZ9yK81gJLHc1a4j0pA,12748
103
+ telegrinder/node/__init__.py,sha256=zIyuuEAlTB-rqJo8FqKoP_Fv49FJLxgWfOD99VlFgTs,1490
104
+ telegrinder/node/attachment.py,sha256=E-btA8w6p16jta2aQ9Jfo7wknUZ1-RA48cRovaQib3Q,3112
105
+ telegrinder/node/base.py,sha256=XPCOHPqh0Ley_wyqlxxQ-HAaKi9wcQABAc6bNgc77NA,4683
106
+ telegrinder/node/callback_query.py,sha256=UrkmMXhgs8ZU1mzqwizRkbQCKgtAHVZXADqbaIU86BY,1784
107
+ telegrinder/node/command.py,sha256=0Cx7FCOaov93p1coln8LI0mOJvn8eZ7pzVYBRr8sMGU,940
108
+ telegrinder/node/composer.py,sha256=DLqzcJdWx-N_QoPFCIzzX52TsZFgDS-nCVt4PM2RySw,6974
109
+ telegrinder/node/container.py,sha256=GiNAiPbxT7uFomh0Z-87mSUstorzEXQhLmOTaR-SI04,862
110
+ telegrinder/node/event.py,sha256=Fe6C4144O0Wfr5plZ_OmWlNQC36MdAC6QDS3I8qn1sE,2180
111
+ telegrinder/node/me.py,sha256=x-AiDDVcrRiIRcPzIDUiDf8IUQ7zVJeqe-IrjblDUzo,433
112
+ telegrinder/node/message.py,sha256=muV0q-AHwBM87Qf8VyQImq1-O1CjFqH3mdflxBchJtE,457
113
+ telegrinder/node/polymorphic.py,sha256=Khu0fQCVoEzTGeQGzrj4W5gl24LuOmj6ey7vsQRw_2Y,2075
114
+ telegrinder/node/rule.py,sha256=s-b-MI249inZ-XuaUYyUGNdC6gteYHzs8NUGfLQwW7w,2582
115
+ telegrinder/node/scope.py,sha256=UhTboN58VWYtvKHaC94Y00oTjl4-Ed9DpfO0-brGKaE,746
116
+ telegrinder/node/source.py,sha256=1GABGwaweUNN6wLa2XvfB_nU9u5zzdTTo1rv5cFOcho,2362
117
+ telegrinder/node/text.py,sha256=v7zySk4hsd7tsX0xR0jil5IRZ3UNOvoo4ZbI4fN6MRs,1115
118
+ telegrinder/node/tools/__init__.py,sha256=d4_cDojrnqPQO679ivcjsjS8XihgDoyIVJ9HfzADrX8,70
119
+ telegrinder/node/tools/generator.py,sha256=FbZaVS6Ca7fA1oY0majtcXihmv6ujA8l-ViaLUeatvo,1142
120
+ telegrinder/node/update.py,sha256=G85RcMP84ZRZVLLZIlhJPiF4OHtzQUHm_ZBg_nP1WQg,462
121
+ telegrinder/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
+ telegrinder/rules.py,sha256=exnbhmzEKnIoYIrOBHgJmvC0cq8qTczFqS3lDPZsu_s,1145
123
+ telegrinder/tools/__init__.py,sha256=N6R8AY9W9UCHdhIlfEeJRXIzBk6pah2K5S0tmw20iow,3051
124
+ telegrinder/tools/buttons.py,sha256=TVAsIp9WtM9ej0T78YrZuMpeMOLqksqvXgUiXI5etMo,3019
125
+ telegrinder/tools/error_handler/__init__.py,sha256=gJ4ViIIaBPxcwMtmGSwrA4DyhVDD_jl6uBYXEuAItG0,214
126
+ telegrinder/tools/error_handler/abc.py,sha256=AXgQKUydQE6ptKAkcnZ50h0kZlb7_6ss5UzQWnp6G58,894
127
+ telegrinder/tools/error_handler/error.py,sha256=Mxb9rbgGRKvAZvOPISpakhWVgZyOYVH0Nl8sptK5WXI,230
128
+ telegrinder/tools/error_handler/error_handler.py,sha256=oLkCR3AgMNkagpnfVdVApvaRjf5UN2jUtsb5O39fBOk,6903
129
+ telegrinder/tools/formatting/__init__.py,sha256=P6qactyCtFl8CWQOWnCXGUVL6XpYNMwgSjjwIb7gy6o,1505
130
+ telegrinder/tools/formatting/html.py,sha256=3Glojk4QePvLUXNIQle_9jVAQFt1FVImhVzMLJiF5oQ,8993
131
+ telegrinder/tools/formatting/links.py,sha256=SxN7ar7PWVWJ55iX220Rvr_GY9nxmtvNUAbdP5_F_uM,1145
132
+ telegrinder/tools/formatting/spec_html_formats.py,sha256=GNzZTaqzObsV6tyrdbMjvd7OE1iaCYPjyGk2ReYtJ6M,2728
133
+ telegrinder/tools/functional.py,sha256=7O8koJN0MEqI0SiQlrWBhlVM5JXW-GluIsbqoBmNRi8,235
134
+ telegrinder/tools/global_context/__init__.py,sha256=R3HEfdB33I5VTWOK52BS1H9isEaTMg0tBFQWM94Ek2w,297
135
+ telegrinder/tools/global_context/abc.py,sha256=0dM_rgzW358GztM3Hi9PGUTIiGjN3AGa9E3o35fQfr4,1707
136
+ telegrinder/tools/global_context/global_context.py,sha256=FWMjkM6sP0F9x12CySs1HPSp9YbzJZNjrSto7FkV8QA,14091
137
+ telegrinder/tools/global_context/telegrinder_ctx.py,sha256=OvBKOHWDeU2V5fNPxWUF9FwtQCSbCVMoIFT34yGfsGU,751
138
+ telegrinder/tools/i18n/__init__.py,sha256=XfbMa7pbRy8JEqAJOIRtQbw47gX5aZfQZJfccOmDeIk,294
139
+ telegrinder/tools/i18n/abc.py,sha256=t2L0fAChErXn73CPxu788XVv5_Q3x4KP_5Rz9UniEp0,756
140
+ telegrinder/tools/i18n/middleware/__init__.py,sha256=EP1Hffa974GHtikWdhq8dg1B7IK0zMHGmCN8LdaJpKI,84
141
+ telegrinder/tools/i18n/middleware/abc.py,sha256=yhKwIvAwZgah93oTzHLR8zwY6ohvFNIEf_0ZppaIjOg,752
142
+ telegrinder/tools/i18n/simple.py,sha256=kULi54SZpGSj1DUDuuTxWnVDrfMFmYZb2EX2TtR8DZQ,1607
143
+ telegrinder/tools/kb_set/__init__.py,sha256=aZsnFPUgWrp6kcZbfqwbrccNY9i-kcu33092q1z6lzo,160
144
+ telegrinder/tools/kb_set/base.py,sha256=YzYYJhw1WHS2ckn9xzyS7ThfEObYVcWhitW9d99BegE,258
145
+ telegrinder/tools/kb_set/yaml.py,sha256=xqdrEGUnWwaQeIpmVIPxm5NyZkHRlEDB9SkeOFoPJIU,2070
146
+ telegrinder/tools/keyboard.py,sha256=a1Wue9lDKMJ7L5N-DRNzhcDbESdn9Oi0-brWqo9A4DQ,4006
147
+ telegrinder/tools/limited_dict.py,sha256=ZONfFl9VO9EcNDqLEwIgTgkrQ1uubb9DUAOBhB3_qSo,1115
148
+ telegrinder/tools/loop_wrapper/__init__.py,sha256=0YxHL_Dbl6_WNTrVv2tA4rkEKQeYq_kTOTPSbc41LrA,169
149
+ telegrinder/tools/loop_wrapper/abc.py,sha256=EzLCJabycnFM5-YoMfPkotSyaRZ8YT_ngyDC0xxbf6c,281
150
+ telegrinder/tools/loop_wrapper/loop_wrapper.py,sha256=gUrfD8eosNbni3ATZMTaYnEZAsak7djq7i_G-TWG7qQ,7271
151
+ telegrinder/tools/magic.py,sha256=R5zO8iuK7qVzbbPnvn2SdR8RU5klTNyWjbnDc13k7YI,4754
152
+ telegrinder/tools/parse_mode.py,sha256=MkR7r7f0JoWVgakdha1040REvRjs7LClHmClJ0u9DIE,98
153
+ telegrinder/tools/state_storage/__init__.py,sha256=VUAaDARf8q5Bikso1Mjbo2FzJeJQa5tTiuqIRkmxkMk,215
154
+ telegrinder/tools/state_storage/abc.py,sha256=ldyhHuqCu5rUXW6A-0BfsZFhr3n6e6CQw__IZ1NWXds,993
155
+ telegrinder/tools/state_storage/memory.py,sha256=T5ahcVPkj8qmTHEApNxZt_pxS7J4lbDbhNv0C_M8FxA,778
156
+ telegrinder/types/__init__.py,sha256=UxWtp8NgKkO_CEW_w2UN6Bs-OGScO9xlOGv6pGzJ1Hg,6898
157
+ telegrinder/types/enums.py,sha256=iMMBbVOgY7PuDVkYwlKXuRnz9WNRCLHOzTrGK3d89CQ,19718
158
+ telegrinder/types/methods.py,sha256=zA7gcWofIXFKkLNLmMhO3OSL06F4DP-HUJVZ-iaIgGA,205944
159
+ telegrinder/types/objects.py,sha256=yNDOkejLy1MgXAanrm3FJoKnAj91aKYXIBtrRP0Zuhw,312237
160
+ telegrinder/verification_utils.py,sha256=w9yLyY2QSTcJjlDfP2LGv3S5FSgwOIaW-VIuXvpcCiE,1019
161
+ telegrinder-0.3.3.dist-info/LICENSE,sha256=vBdntfovExgMLJP9OgGiqhH1bA6vKodGeeU3RwjeCWI,1117
162
+ telegrinder-0.3.3.dist-info/METADATA,sha256=An-6iWFGk1h5qHTox-u1IR7hf1tluAeiwzczhn6Gqu4,3143
163
+ telegrinder-0.3.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
164
+ telegrinder-0.3.3.dist-info/RECORD,,
@@ -1,164 +0,0 @@
1
- telegrinder/__init__.py,sha256=ZQ-xhn_0nk9NS87NNjHy2GyQip0i_oigR389jEq_kd0,5407
2
- telegrinder/api/__init__.py,sha256=AFZ07UvdL4rhq9lZpB-j9JuGOONmfkvt8RfdG71ND38,226
3
- telegrinder/api/api.py,sha256=OSwm2_mgHS9jCsKy_vdOJzVtH-j6v68ypkdtvKFlQ3w,2877
4
- telegrinder/api/error.py,sha256=6_KBR819Tg9mLI7w5aHHYnrS8VSDYNkWIrHCnfgCFKk,422
5
- telegrinder/api/response.py,sha256=d7Oxd5kOdbZNJiALkzkecHl8Y3K_BzCmsRq2Sn3otqA,491
6
- telegrinder/api/token.py,sha256=wBnMHOgZZuQctsqPKT-u5GVdrj5vJ6u5zpJJOGS8or8,945
7
- telegrinder/bot/__init__.py,sha256=8Ft0wFT2n-l-DkImsGcxxbt3zgJumMwUIEGTfn0k8XU,2777
8
- telegrinder/bot/bot.py,sha256=qrB7GHglZG1wuXdPrAQ7kFzcuOT1og_ybwuem_feL-U,2780
9
- telegrinder/bot/cute_types/__init__.py,sha256=moe1mSKesNqUBf8m11s2wiL0fJIa8JOEHRqDr2Tira8,639
10
- telegrinder/bot/cute_types/base.py,sha256=EmQH0UZSzVdaMNT_9ExbN9-YUdngIUory97aDj_-rIM,8084
11
- telegrinder/bot/cute_types/callback_query.py,sha256=N28q25vMVyDf-QmWAwAl4onoQZrB3W_IX7_j3mDOCzA,18760
12
- telegrinder/bot/cute_types/chat_join_request.py,sha256=j0jD9Cmt4ysKp_xYhoCcXKmV-sM4aLcHQSJsmavNMLQ,1997
13
- telegrinder/bot/cute_types/chat_member_updated.py,sha256=-wl9pA6dgX0TFpnxEaaBnAhM4j7JSRB5qtH4hRodx88,6332
14
- telegrinder/bot/cute_types/inline_query.py,sha256=hy1uGP0i60Kq3B42kJMx1AIDVewozB20YXbYt9ZEuN8,2326
15
- telegrinder/bot/cute_types/message.py,sha256=NC7aiiARc1JnPs0M_oRiqo3ym5U2T8sGn2-2zeDIXAw,138662
16
- telegrinder/bot/cute_types/update.py,sha256=WYpivvNVe0wIHQx3AfIKK3S6cDp2AfNvAQHDwytPOOA,3163
17
- telegrinder/bot/cute_types/utils.py,sha256=oJWRS7TCkvDhckwhc8yxw3Qn1NKvqDtEGTZ745qEbMg,2530
18
- telegrinder/bot/dispatch/__init__.py,sha256=UzU0PM22YKtM6J2aVuGRx7NEFUGnbUZlmReCFSTCNek,2477
19
- telegrinder/bot/dispatch/abc.py,sha256=RowAphsEhhK9cYAHqs3h0Bnx_ja2WBoWAIkMCsNOGk8,2340
20
- telegrinder/bot/dispatch/context.py,sha256=vt_kGYhyc0RKQ2GKsbi-ewAwy2OTqaho6H3wVf8c-2g,2607
21
- telegrinder/bot/dispatch/dispatch.py,sha256=p5vod5FuVxC3523WnZgL8N73cGoZ5Y9159RXoZC0zII,6346
22
- telegrinder/bot/dispatch/handler/__init__.py,sha256=PL17gyh9u9fHHz1yTglyBpRGoioqdMD5UxFAtmTidC0,911
23
- telegrinder/bot/dispatch/handler/abc.py,sha256=FB2Xkiy-ZFsX2pEHfM7tCIXXjgWSouu07JYosICS9UA,578
24
- telegrinder/bot/dispatch/handler/audio_reply.py,sha256=eNj9sO1auG8_HwZ3RGiegh7crqIQRcXuLeZ9Zfwc4vg,1358
25
- telegrinder/bot/dispatch/handler/base.py,sha256=OnmDTgypbnrHMoDW_-UV--wIRn2Nlw2IM2EM5q2vF2w,1811
26
- telegrinder/bot/dispatch/handler/document_reply.py,sha256=0SAvmcG9DwuZDJHd_si8itvnMWdhl9ajkviAtPzlkJM,1385
27
- telegrinder/bot/dispatch/handler/func.py,sha256=XHWYHJOcVLGJD4Jo3pIlvGJ4hTsWQMp7ATGQ_KdGpUU,4794
28
- telegrinder/bot/dispatch/handler/media_group_reply.py,sha256=0gyODXt2XOPCw-pbgdcun4sI4L2zTmbIvZgyUbO4Rl4,1394
29
- telegrinder/bot/dispatch/handler/message_reply.py,sha256=kaPubePuj-poRgKfiJNLqweED9kr_0JADxssxr3JeBg,1137
30
- telegrinder/bot/dispatch/handler/photo_reply.py,sha256=B9vqgIG7vc1hq5EGUI4tnpw97KNweNmu32F5Fgl3-IY,1358
31
- telegrinder/bot/dispatch/handler/sticker_reply.py,sha256=E9DNupUhd4EWNUXcJDF6QWkYUrux1PJtF7E-FH6p8hs,1203
32
- telegrinder/bot/dispatch/handler/video_reply.py,sha256=G3E1v60ubkmZ1m2CUxbTR08VQywu7D4VQHDAO_Jhlk8,1358
33
- telegrinder/bot/dispatch/middleware/__init__.py,sha256=znQGQ0jnBioEXr-2RPHOkmDbjei4LEbaTjgiE9c8aXI,96
34
- telegrinder/bot/dispatch/middleware/abc.py,sha256=O3aiE44XpjE6h9iXYc_uWNZCBxDH1KAFrLej4nsJhUI,413
35
- telegrinder/bot/dispatch/process.py,sha256=nnceowxYIknJatHQJRZjTN3qDNpC9r57qxiBajl7WQs,4206
36
- telegrinder/bot/dispatch/return_manager/__init__.py,sha256=z1c9ZC_OdbEJ7utmA8jRiSjJQNTBLlTKmIQzrl-kDJs,602
37
- telegrinder/bot/dispatch/return_manager/abc.py,sha256=O9k0oJqRbJXPQqEr3PGJAz7Hf2eYiNGRLYtXQq8E8-o,3671
38
- telegrinder/bot/dispatch/return_manager/callback_query.py,sha256=x7FT1PioR6USsfeyNVyy8mWvP4Vkq-sysIl1OpZm-fI,722
39
- telegrinder/bot/dispatch/return_manager/inline_query.py,sha256=pM41c53TyPkVY5o5HPBDjgUoyw0w68Kmi9BQcTsXRGc,543
40
- telegrinder/bot/dispatch/return_manager/message.py,sha256=cLnY3sAJCvVr1iA3GpakwngHrm_5STPMES2ip0VhkuQ,1238
41
- telegrinder/bot/dispatch/view/__init__.py,sha256=zef6oMILerYp9BZ7wQ_0K-4Ws0UZR5Bm9eTUqs8J0_Q,847
42
- telegrinder/bot/dispatch/view/abc.py,sha256=tOfzTvlfX4-E5ZXCsPFfqhiNpowUwou1hbA68SW7dl0,984
43
- telegrinder/bot/dispatch/view/base.py,sha256=GQD2B3LPXZIcAnbwH3ocl2tYX2b_SnshoAx0AzFIqfA,6888
44
- telegrinder/bot/dispatch/view/box.py,sha256=ydqvuReC7lUZmuNLCEAbs6xOWDWBUj99MpTMhX0jWT8,5530
45
- telegrinder/bot/dispatch/view/callback_query.py,sha256=xMmg_ZFV2D0DYRNzoUn32K99N4pW_5avhe4MH5ipUE0,619
46
- telegrinder/bot/dispatch/view/chat_join_request.py,sha256=NHrl9gDj65bE18nagfRxBmSYWznj6ov8uJFCK7C8VAI,494
47
- telegrinder/bot/dispatch/view/chat_member.py,sha256=ZDZOxxD-YJZWuX82CCZ2WkGGYKKbFMSoFxpqJWfR4RQ,1238
48
- telegrinder/bot/dispatch/view/inline_query.py,sha256=Zy9YmDLKOjwgDxPykvskMTTOzGCPlOel-mX3edmlu-k,573
49
- telegrinder/bot/dispatch/view/message.py,sha256=dI_iL5ASVe36S7Ahrk36RVuMy0Xceb8kx5osgmhoe8M,1416
50
- telegrinder/bot/dispatch/view/raw.py,sha256=gkyHkJgQheFWjY4AJC3cuz2pUOghHYpQEkCbQcinZWU,3573
51
- telegrinder/bot/dispatch/waiter_machine/__init__.py,sha256=2I3MQpTAVFCHoHJUxAPCWUyasGOkdGSBKRETiTLgBpg,862
52
- telegrinder/bot/dispatch/waiter_machine/actions.py,sha256=q5sJAN6wdGSRq38bTfedVQZW1xK2WLlgNAviWpVqHEU,361
53
- telegrinder/bot/dispatch/waiter_machine/hasher/__init__.py,sha256=nu0WhOWmGkhybOP-faiAFEx1nlYo_N_LW2AuAmbC_Z0,497
54
- telegrinder/bot/dispatch/waiter_machine/hasher/callback.py,sha256=W-caGejmYBRx-yWdUPH-D54yPPBtESrroNLyVog8e2I,1587
55
- telegrinder/bot/dispatch/waiter_machine/hasher/hasher.py,sha256=uP8IDlZ3VU4s4Xf2Mtf9SOluRn8BIcrmBSQtsfCXdPg,1735
56
- telegrinder/bot/dispatch/waiter_machine/hasher/message.py,sha256=NoT2BaTrHVnyaaXsXTkf8riJZp8473-T3EXNri4y70I,1253
57
- telegrinder/bot/dispatch/waiter_machine/hasher/state.py,sha256=hV4gdQD14dUgo6s_x-_PCIqeU3Ku7EtdoZk_t2fi3MQ,619
58
- telegrinder/bot/dispatch/waiter_machine/machine.py,sha256=wVSsDjwlmrQl5uqdYLWwnPR906dYWWhKiQ9IwVC79Q4,5666
59
- telegrinder/bot/dispatch/waiter_machine/middleware.py,sha256=6cXjKASm1I3QPW_FaNU62c1mOleRt9OsuwWY1_zyhwQ,2976
60
- telegrinder/bot/dispatch/waiter_machine/short_state.py,sha256=GiYqVEL8RVVYgchRnIFiVyhB5KBI_trcytIoGHw_w7Q,1954
61
- telegrinder/bot/polling/__init__.py,sha256=OqfIFPS_V6UrCg-vCv9pkMFzTKdNbDP2faBfATs_TGg,94
62
- telegrinder/bot/polling/abc.py,sha256=qFiKzWTWENK-sSuShC5cPlM-JS4In2c8-1_ARdwdTms,442
63
- telegrinder/bot/polling/polling.py,sha256=SOcVfmMS20M2O6ilXxvu507H7S8iNawebclfmwWJe3U,4765
64
- telegrinder/bot/rules/__init__.py,sha256=nl2erwXAnICnZwAuqZr5wPm3tLjHGxMU7Qyi03Jym44,2859
65
- telegrinder/bot/rules/abc.py,sha256=9E80uDt9hReMojD94RV9ZPwMRDqyn44ShhBIP6NnE-s,7282
66
- telegrinder/bot/rules/adapter/__init__.py,sha256=rZNX-Squn4hsE19tW2q3x-f33ZB6yzgU5eoI1VB0TgI,445
67
- telegrinder/bot/rules/adapter/abc.py,sha256=lPyieSDDr1z98rZ4W6Ic8QzHDzCEU9xIYrPKU9qDCas,682
68
- telegrinder/bot/rules/adapter/errors.py,sha256=2r_UBTWm5-heU-NchBfobC1f848EWeC64nKvprGnAAY,73
69
- telegrinder/bot/rules/adapter/event.py,sha256=XDeHYGwOS7bYsI5bP-iPg5Ut_dzGbTBC089OkJhSfpY,2772
70
- telegrinder/bot/rules/adapter/node.py,sha256=VuC_LGGkZh6GKW3dCvfDZhbiA8WJyddY8xxzerUZ7us,1663
71
- telegrinder/bot/rules/adapter/raw_update.py,sha256=Pz_xs5dvfsf_FXi9iO0SJFq4JRnDNolYGXqCSP_0tPs,1007
72
- telegrinder/bot/rules/callback_data.py,sha256=ZU9Qi5LyP_CNvpO8XTfNa0HKgX7H27N6oxz3znHNTTU,5569
73
- telegrinder/bot/rules/chat_join.py,sha256=pHXQv9VMKmBO7OGcHJLk-a9rB5l6sOybFmOWvgh1PXU,1442
74
- telegrinder/bot/rules/command.py,sha256=gYEWkrOr_xBWXbCnEXBrDs8EHRyW-pwrlascVRmS854,3906
75
- telegrinder/bot/rules/enum_text.py,sha256=c-B3_iF6nZOnOY1A8s500W37XYeEyQaJIl1OU5aZ3V0,968
76
- telegrinder/bot/rules/func.py,sha256=dqcxhC7dIP67Zi20iFz2jCWwwioM2NuemCM5dwpQDXg,769
77
- telegrinder/bot/rules/fuzzy.py,sha256=GhI0Eqf5Y69bvIlYDvGbGH6RNQqW81aXK3YV5OVlZ04,670
78
- telegrinder/bot/rules/inline.py,sha256=SKc9AAL5igUd2LX83Xoe2WCZUWPONcNqvdFcNge8fEQ,1921
79
- telegrinder/bot/rules/integer.py,sha256=nDabEsuGfzC8cBuOtUCAkeWyFHW6u_BKvvcya2HJr-c,429
80
- telegrinder/bot/rules/is_from.py,sha256=_ZFdPg6zAsXJ8Cb-sjcRc9fsonzmvGJvh-5Fca2JPTI,3700
81
- telegrinder/bot/rules/markup.py,sha256=Y7PXvE0nlh5GHT2NJqtWzXMiWmGSkfPABF1WFo0xvrw,1328
82
- telegrinder/bot/rules/mention.py,sha256=u5VQbEwb1BuYmXMLE0bxLde4fDcvEGCq3JAg0dhuaN8,429
83
- telegrinder/bot/rules/message.py,sha256=1zwZW4JqQPGPmuy4j3hMxQTQPrp2l29MR9HYXJQHRMM,456
84
- telegrinder/bot/rules/message_entities.py,sha256=S0vxpXPld7gGESMpk7lb37OnPXGcLYCWWXqcMMwQHHM,1085
85
- telegrinder/bot/rules/node.py,sha256=CQGzT-pOmuh2Wkbq-1WvOzzWrM3vVsRlGEzBUCZ1v6w,886
86
- telegrinder/bot/rules/regex.py,sha256=PKryH44NGqeKiW53OggwCsGSFh_rQTddMojQ3AQme5A,1147
87
- telegrinder/bot/rules/rule_enum.py,sha256=35GwPKLBTG_ESn4TZLcFJTLNjYXAi_d9wrfIDexoEH8,2113
88
- telegrinder/bot/rules/start.py,sha256=AipwfOQ2LGCofvgouRmkIiY9mGFLlEUJ-7a3CLIiy4Q,1147
89
- telegrinder/bot/rules/state.py,sha256=3hJTT2yVTqGbsdC52qCXqXyctnCZeZuNC7TkpfDjXic,975
90
- telegrinder/bot/rules/text.py,sha256=JyypoDCoR6LM2lmK0Ej5sfcXwtGwbLibY7-96w3a80s,987
91
- telegrinder/bot/rules/update.py,sha256=-mE12-xy0AjOz9RVRVZ8vS7ohGCuf_bNmG26rDbrjfg,392
92
- telegrinder/bot/scenario/__init__.py,sha256=nnPjdxdvjoEYYMRUEfWvIhZStiY1C984x1azdRRP9II,136
93
- telegrinder/bot/scenario/abc.py,sha256=3UwnA9Nt6CETKm2YclD0gVbn-483fTSBriZADd3p-bM,468
94
- telegrinder/bot/scenario/checkbox.py,sha256=hF8YXPtTceijoJpCe-la2Hu0uStmUvn3g9bCHE3cOCQ,4561
95
- telegrinder/bot/scenario/choice.py,sha256=9BiLViO7MEblBcYqlAkW_L3Nfa6NWcF3sj3X1GyIyBc,1480
96
- telegrinder/client/__init__.py,sha256=ZiS1Wb_l_kv3FHzEEi1oXtFLwlA_HXmWOzeN0xA3E7Y,104
97
- telegrinder/client/abc.py,sha256=OxsTX_PLYBEeFT9zpidFUzAbQL9BM7rQqru7zdn5DiQ,1611
98
- telegrinder/client/aiohttp.py,sha256=gVYHhhfqdsC1OJ0x6AhK2V1x0yjeXe1PwDC0I3T6UPg,3903
99
- telegrinder/model.py,sha256=2s5UomOJiT97sxAlUc-ySDRWTq1Sx_6vs3jLrlVExM8,7263
100
- telegrinder/modules.py,sha256=0EDTJsFhM6sa9P34gHOvrsMIV-uouq80iBraFvCbOA8,7743
101
- telegrinder/msgspec_json.py,sha256=eDuRTP_bFYWtNPDINuzY2OGKXbdleaKyXh2mQgfJdMk,237
102
- telegrinder/msgspec_utils.py,sha256=Ta4B4Q4iKsTj2MR1eQQdzqn245yAXUSwWaBpM7W7lSI,12332
103
- telegrinder/node/__init__.py,sha256=f4rkFvg0TeAjZehHd6qloxHZectsFsTWPh6opdekhSY,1376
104
- telegrinder/node/attachment.py,sha256=W172F6bgxacrfyNRQCzBntwNRqlz3wd-dKefpZE8Pmc,3025
105
- telegrinder/node/base.py,sha256=meaj61Kiz8CcaT0FC7fASi2UyGoQhIBx0evFcHbKBLg,3975
106
- telegrinder/node/callback_query.py,sha256=74vcdj_hQCWbIzPjQAid1eFN0TaJI_xvZqzel5ioykU,501
107
- telegrinder/node/command.py,sha256=W6DAikNZ_TFliaoLuhpuIR_D0kLkMdrPd8HjsdcB4_Y,907
108
- telegrinder/node/composer.py,sha256=TV_ByJ4gqM_cs4u5hS20l32tw1dlHLSkL8MWyueuhuA,6330
109
- telegrinder/node/container.py,sha256=_EUXChgKJCiUnEgR06cNzk4suMHqyLbMKMU54Mqe5yE,835
110
- telegrinder/node/event.py,sha256=6UxhoRFtfCCmRH28dJ9Bbqcs8DxgPp2KQRRfs2Ifb3o,2521
111
- telegrinder/node/me.py,sha256=jLAkRbcIijiN7UXZ62Q5F7VgCsmlgBLiU1reffnESQc,417
112
- telegrinder/node/message.py,sha256=ADlNe_b6fUX5jHpoqu4wSyHKR72pXgn6L6CXGaKAb0Q,443
113
- telegrinder/node/polymorphic.py,sha256=bh53UQBReFz-d481OYEPyS7Ez6l3LcAanL6SEjp_ieU,2124
114
- telegrinder/node/rule.py,sha256=pzNAWL7BLQdTAGs-Qe8X9uywHwN3vqMFoVjxqf-gzYk,2506
115
- telegrinder/node/scope.py,sha256=SBC4j6MoqQxhtYzjgLYkfjd0-b8moFOEKm6hQt3fno8,708
116
- telegrinder/node/source.py,sha256=1iR9DgmbtO38LRZi1yphteypFaDHAjIh_YPSeff0Lvw,2291
117
- telegrinder/node/text.py,sha256=YiItMrhcXWkBu5DmUJ68hEDY3qs8gG6sEtqwcMwFS8o,569
118
- telegrinder/node/tools/__init__.py,sha256=iyjs82g3brYGzpPsUQaoK6_r7YuQhRkJ61YjjuPOx9E,67
119
- telegrinder/node/tools/generator.py,sha256=YBgQb4ykWT_5RKzkT4V3SmhtjWC0fhkCuKIyB3TkaOw,1102
120
- telegrinder/node/update.py,sha256=Z1vKLIuuXnGjxKOGTJgsdDSJMsFQF8qMj9coX2hDJ30,447
121
- telegrinder/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
- telegrinder/rules.py,sha256=exnbhmzEKnIoYIrOBHgJmvC0cq8qTczFqS3lDPZsu_s,1145
123
- telegrinder/tools/__init__.py,sha256=DJ1fzGRlxMJ4SzsSAW_hzk6q9YPfY5fxMX-hL7zTMak,2977
124
- telegrinder/tools/buttons.py,sha256=3JONQh3ua2eFEyDj2aK47WUwcVrYVKWSwnPIOghy_e0,2940
125
- telegrinder/tools/error_handler/__init__.py,sha256=WmYWZCNhhSk32j4lIOltEwzoYUx086TGTbOF5h3Ps7s,207
126
- telegrinder/tools/error_handler/abc.py,sha256=KK6cE8_95scCt74l2NCumHbQmx4WSzRE88c3rl5pWB4,861
127
- telegrinder/tools/error_handler/error.py,sha256=uLcG-wqyOeCEB45m8vMcGy5kZ87bGHUS_-fPw2cGE9s,221
128
- telegrinder/tools/error_handler/error_handler.py,sha256=lM8ooBJPEUNTMDs8e71XBbJAWyf7vAMNgceLmKPxfrI,6680
129
- telegrinder/tools/formatting/__init__.py,sha256=1tFuJjMpDphCIOR4uXQhptyLHuAZ26mYSFx_BQwL5Lo,1459
130
- telegrinder/tools/formatting/html.py,sha256=230nOLTU5HpOzqdyvt3q7x5P5x3096vETH-4ADKdQsY,8710
131
- telegrinder/tools/formatting/links.py,sha256=dYJy2qPxa4YGHYqSSCTv-6hXz0Aa0AGuzsLXwbxPZ9A,1112
132
- telegrinder/tools/formatting/spec_html_formats.py,sha256=I-OULqlof8NOeSNGBddKkudqMLjsMAQ02Pc6qH_fNRQ,2617
133
- telegrinder/tools/functional.py,sha256=WBnOlSoIiO8glq8C3NmfGrgqQYK0yC6ISgQ3HPuRf1A,223
134
- telegrinder/tools/global_context/__init__.py,sha256=5pF9growKd28WO739wk_DZUqCDw5hxs6eUcDtxTosX8,290
135
- telegrinder/tools/global_context/abc.py,sha256=twwAmbTk49KGl_POImr4yj6POr-zdx8mz74McuphZH0,1644
136
- telegrinder/tools/global_context/global_context.py,sha256=U-rdGgPJ5Cde4FuV6IP6jQWxlrvDaH6YYuBSA6RFWHU,13679
137
- telegrinder/tools/global_context/telegrinder_ctx.py,sha256=xky1mUflhHonhI6Q1Mwz2SBO-eKTTBs5qBJbZkuuRK0,724
138
- telegrinder/tools/i18n/__init__.py,sha256=jMrrdFexgMU-BUiKf-p22VowQaqtQeaCb-Cs0fq2Tls,287
139
- telegrinder/tools/i18n/abc.py,sha256=jxJVYiTplJaNeklkGiin-m7BkfZiac2fbVXTEdhNw6o,726
140
- telegrinder/tools/i18n/middleware/__init__.py,sha256=a0yJUYmDbl1Mqf_cWx2TTmA3_Andlk8ixLJyDYAA23I,81
141
- telegrinder/tools/i18n/middleware/abc.py,sha256=jspRUdBYMJ04c2VLOQNbkHCwxIrkqYJh2nG3AMeYUTM,727
142
- telegrinder/tools/i18n/simple.py,sha256=w2SlMKYqJbDK9ScTwCAB6pdskqwtmqV7pK8yEhSUFDA,1564
143
- telegrinder/tools/kb_set/__init__.py,sha256=k1KCQTnvEgJ2y4KlghhJWOh5rccwg_27cs8264NtMmk,156
144
- telegrinder/tools/kb_set/base.py,sha256=mbZs-ViUErfSibzyN064IqZp76LBJPg3NB4D9v4VFtg,243
145
- telegrinder/tools/kb_set/yaml.py,sha256=glk27r0L9Y8ibaPmTHMAEJZw-ED-ehmSo_NdJNKkrNs,2007
146
- telegrinder/tools/keyboard.py,sha256=DHrrn6W6rjBnwTRoDauKhtQq7f3SHj1YzofO7xEE6LQ,3880
147
- telegrinder/tools/limited_dict.py,sha256=tb1WT4P3Oia5CsCBXTHzlFjrPnIgf9eHCkQ0zhAbEUg,1078
148
- telegrinder/tools/loop_wrapper/__init__.py,sha256=ZQ5jmE1lOKnqJlMZ9k2OYmjvOEhOlHPijUWqZ4nHIgk,165
149
- telegrinder/tools/loop_wrapper/abc.py,sha256=ET_Dp-kRz75Jo1fZB3qofUgEXN4FqlU0xH2diESKGCM,266
150
- telegrinder/tools/loop_wrapper/loop_wrapper.py,sha256=h8Oii3FtLODRafxTez0ZEMNIZ8lhuNRwixO1u0jPhok,6763
151
- telegrinder/tools/magic.py,sha256=jPfjWoNF1cjOewMDpjAajUieSMKNeCSQzyS2fqNwD4M,4597
152
- telegrinder/tools/parse_mode.py,sha256=JyQ-x9YAMPLhIIiUX01acyKkpWgs5TBA07W-iUyPHpE,92
153
- telegrinder/tools/state_storage/__init__.py,sha256=G2EK2HwS0NbRQIu0OotVlgEYtO_GuzN1aJOIxmDEtz4,211
154
- telegrinder/tools/state_storage/abc.py,sha256=9-UOmov9b7bQpeD0JukVsayU2FHmW45FeCnlPdayLhM,958
155
- telegrinder/tools/state_storage/memory.py,sha256=p5ffTYIpliIFgn4OzA33n_qbdt-aeC5cbBh1ELTIK5s,753
156
- telegrinder/types/__init__.py,sha256=vxR7J8Ql4LLGcJy6fZlLCwXA8iyLa8hOFMdE6YDhW3k,6638
157
- telegrinder/types/enums.py,sha256=q9URlXZvrjOUQKpLfV6v9uspBcLrdW0gtU-m8YDnj7w,19017
158
- telegrinder/types/methods.py,sha256=gIqcFHVogw8bbYO7C7tf1xdzE-m5EiKe998NW-IS2fI,201311
159
- telegrinder/types/objects.py,sha256=tfQuJKWYH8l3vmvx65gg2yGh7kpfueU9wPMFsPZIu9k,246627
160
- telegrinder/verification_utils.py,sha256=X7N0mHoOzbcYeKa5XxI_EFhmEGX5XNU3qqgbV8YRRa4,987
161
- telegrinder-0.3.1.dist-info/LICENSE,sha256=Q0tKgU8mPOCQAkc6m__BrNIpRge8mPBQJDd59s21NZo,1095
162
- telegrinder-0.3.1.dist-info/METADATA,sha256=zpaW8SHYEC-IUf0Sf23IuXK4xun8gRx_zOXoBbW4VDQ,3143
163
- telegrinder-0.3.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
164
- telegrinder-0.3.1.dist-info/RECORD,,