telegrinder 0.3.4.post1__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.

Files changed (169) hide show
  1. telegrinder/__init__.py +30 -31
  2. telegrinder/api/__init__.py +2 -1
  3. telegrinder/api/api.py +28 -20
  4. telegrinder/api/error.py +8 -4
  5. telegrinder/api/response.py +2 -2
  6. telegrinder/api/token.py +2 -2
  7. telegrinder/bot/__init__.py +6 -0
  8. telegrinder/bot/bot.py +38 -31
  9. telegrinder/bot/cute_types/__init__.py +2 -0
  10. telegrinder/bot/cute_types/base.py +54 -128
  11. telegrinder/bot/cute_types/callback_query.py +76 -61
  12. telegrinder/bot/cute_types/chat_join_request.py +4 -3
  13. telegrinder/bot/cute_types/chat_member_updated.py +28 -31
  14. telegrinder/bot/cute_types/inline_query.py +5 -4
  15. telegrinder/bot/cute_types/message.py +555 -602
  16. telegrinder/bot/cute_types/pre_checkout_query.py +42 -0
  17. telegrinder/bot/cute_types/update.py +20 -12
  18. telegrinder/bot/cute_types/utils.py +3 -36
  19. telegrinder/bot/dispatch/__init__.py +4 -0
  20. telegrinder/bot/dispatch/abc.py +8 -9
  21. telegrinder/bot/dispatch/context.py +5 -7
  22. telegrinder/bot/dispatch/dispatch.py +85 -33
  23. telegrinder/bot/dispatch/handler/abc.py +5 -6
  24. telegrinder/bot/dispatch/handler/audio_reply.py +2 -2
  25. telegrinder/bot/dispatch/handler/base.py +3 -3
  26. telegrinder/bot/dispatch/handler/document_reply.py +2 -2
  27. telegrinder/bot/dispatch/handler/func.py +36 -42
  28. telegrinder/bot/dispatch/handler/media_group_reply.py +5 -4
  29. telegrinder/bot/dispatch/handler/message_reply.py +2 -2
  30. telegrinder/bot/dispatch/handler/photo_reply.py +2 -2
  31. telegrinder/bot/dispatch/handler/sticker_reply.py +2 -2
  32. telegrinder/bot/dispatch/handler/video_reply.py +2 -2
  33. telegrinder/bot/dispatch/middleware/abc.py +83 -8
  34. telegrinder/bot/dispatch/middleware/global_middleware.py +70 -0
  35. telegrinder/bot/dispatch/process.py +44 -50
  36. telegrinder/bot/dispatch/return_manager/__init__.py +2 -0
  37. telegrinder/bot/dispatch/return_manager/abc.py +6 -10
  38. telegrinder/bot/dispatch/return_manager/pre_checkout_query.py +20 -0
  39. telegrinder/bot/dispatch/view/__init__.py +2 -0
  40. telegrinder/bot/dispatch/view/abc.py +10 -6
  41. telegrinder/bot/dispatch/view/base.py +81 -50
  42. telegrinder/bot/dispatch/view/box.py +20 -9
  43. telegrinder/bot/dispatch/view/callback_query.py +3 -4
  44. telegrinder/bot/dispatch/view/chat_join_request.py +2 -7
  45. telegrinder/bot/dispatch/view/chat_member.py +3 -5
  46. telegrinder/bot/dispatch/view/inline_query.py +3 -4
  47. telegrinder/bot/dispatch/view/message.py +3 -4
  48. telegrinder/bot/dispatch/view/pre_checkout_query.py +16 -0
  49. telegrinder/bot/dispatch/view/raw.py +42 -40
  50. telegrinder/bot/dispatch/waiter_machine/actions.py +5 -4
  51. telegrinder/bot/dispatch/waiter_machine/hasher/__init__.py +0 -0
  52. telegrinder/bot/dispatch/waiter_machine/hasher/callback.py +0 -0
  53. telegrinder/bot/dispatch/waiter_machine/hasher/hasher.py +9 -7
  54. telegrinder/bot/dispatch/waiter_machine/hasher/message.py +0 -0
  55. telegrinder/bot/dispatch/waiter_machine/hasher/state.py +3 -2
  56. telegrinder/bot/dispatch/waiter_machine/machine.py +113 -34
  57. telegrinder/bot/dispatch/waiter_machine/middleware.py +15 -10
  58. telegrinder/bot/dispatch/waiter_machine/short_state.py +7 -18
  59. telegrinder/bot/polling/polling.py +62 -54
  60. telegrinder/bot/rules/__init__.py +24 -1
  61. telegrinder/bot/rules/abc.py +17 -10
  62. telegrinder/bot/rules/callback_data.py +20 -61
  63. telegrinder/bot/rules/chat_join.py +6 -4
  64. telegrinder/bot/rules/command.py +4 -4
  65. telegrinder/bot/rules/enum_text.py +1 -4
  66. telegrinder/bot/rules/func.py +5 -3
  67. telegrinder/bot/rules/fuzzy.py +1 -1
  68. telegrinder/bot/rules/id.py +24 -0
  69. telegrinder/bot/rules/inline.py +6 -4
  70. telegrinder/bot/rules/integer.py +2 -1
  71. telegrinder/bot/rules/logic.py +18 -0
  72. telegrinder/bot/rules/markup.py +5 -6
  73. telegrinder/bot/rules/message.py +2 -4
  74. telegrinder/bot/rules/message_entities.py +1 -3
  75. telegrinder/bot/rules/node.py +15 -9
  76. telegrinder/bot/rules/payload.py +81 -0
  77. telegrinder/bot/rules/payment_invoice.py +29 -0
  78. telegrinder/bot/rules/regex.py +5 -6
  79. telegrinder/bot/rules/state.py +1 -3
  80. telegrinder/bot/rules/text.py +10 -5
  81. telegrinder/bot/rules/update.py +0 -0
  82. telegrinder/bot/scenario/abc.py +2 -4
  83. telegrinder/bot/scenario/checkbox.py +12 -14
  84. telegrinder/bot/scenario/choice.py +6 -9
  85. telegrinder/client/__init__.py +9 -1
  86. telegrinder/client/abc.py +35 -10
  87. telegrinder/client/aiohttp.py +28 -24
  88. telegrinder/client/form_data.py +31 -0
  89. telegrinder/client/sonic.py +212 -0
  90. telegrinder/model.py +38 -145
  91. telegrinder/modules.py +3 -1
  92. telegrinder/msgspec_utils.py +136 -68
  93. telegrinder/node/__init__.py +74 -13
  94. telegrinder/node/attachment.py +92 -16
  95. telegrinder/node/base.py +196 -68
  96. telegrinder/node/callback_query.py +17 -16
  97. telegrinder/node/command.py +3 -2
  98. telegrinder/node/composer.py +40 -75
  99. telegrinder/node/container.py +13 -7
  100. telegrinder/node/either.py +82 -0
  101. telegrinder/node/event.py +20 -31
  102. telegrinder/node/file.py +51 -0
  103. telegrinder/node/me.py +4 -5
  104. telegrinder/node/payload.py +78 -0
  105. telegrinder/node/polymorphic.py +27 -8
  106. telegrinder/node/rule.py +2 -6
  107. telegrinder/node/scope.py +4 -6
  108. telegrinder/node/source.py +37 -21
  109. telegrinder/node/text.py +20 -8
  110. telegrinder/node/tools/generator.py +7 -11
  111. telegrinder/py.typed +0 -0
  112. telegrinder/rules.py +0 -61
  113. telegrinder/tools/__init__.py +97 -38
  114. telegrinder/tools/adapter/__init__.py +19 -0
  115. telegrinder/tools/adapter/abc.py +49 -0
  116. telegrinder/tools/adapter/dataclass.py +56 -0
  117. telegrinder/{bot/rules → tools}/adapter/event.py +8 -10
  118. telegrinder/{bot/rules → tools}/adapter/node.py +8 -10
  119. telegrinder/{bot/rules → tools}/adapter/raw_event.py +2 -2
  120. telegrinder/{bot/rules → tools}/adapter/raw_update.py +2 -2
  121. telegrinder/tools/buttons.py +52 -26
  122. telegrinder/tools/callback_data_serilization/__init__.py +5 -0
  123. telegrinder/tools/callback_data_serilization/abc.py +51 -0
  124. telegrinder/tools/callback_data_serilization/json_ser.py +60 -0
  125. telegrinder/tools/callback_data_serilization/msgpack_ser.py +172 -0
  126. telegrinder/tools/error_handler/abc.py +4 -7
  127. telegrinder/tools/error_handler/error.py +0 -0
  128. telegrinder/tools/error_handler/error_handler.py +34 -48
  129. telegrinder/tools/formatting/__init__.py +57 -37
  130. telegrinder/tools/formatting/deep_links.py +541 -0
  131. telegrinder/tools/formatting/{html.py → html_formatter.py} +51 -79
  132. telegrinder/tools/formatting/spec_html_formats.py +14 -60
  133. telegrinder/tools/functional.py +1 -5
  134. telegrinder/tools/global_context/global_context.py +26 -51
  135. telegrinder/tools/global_context/telegrinder_ctx.py +3 -3
  136. telegrinder/tools/i18n/abc.py +0 -0
  137. telegrinder/tools/i18n/middleware/abc.py +3 -6
  138. telegrinder/tools/input_file_directory.py +30 -0
  139. telegrinder/tools/keyboard.py +9 -9
  140. telegrinder/tools/lifespan.py +105 -0
  141. telegrinder/tools/limited_dict.py +5 -10
  142. telegrinder/tools/loop_wrapper/abc.py +7 -2
  143. telegrinder/tools/loop_wrapper/loop_wrapper.py +40 -95
  144. telegrinder/tools/magic.py +184 -34
  145. telegrinder/tools/state_storage/__init__.py +0 -0
  146. telegrinder/tools/state_storage/abc.py +5 -9
  147. telegrinder/tools/state_storage/memory.py +1 -1
  148. telegrinder/tools/strings.py +13 -0
  149. telegrinder/types/__init__.py +8 -0
  150. telegrinder/types/enums.py +31 -21
  151. telegrinder/types/input_file.py +51 -0
  152. telegrinder/types/methods.py +531 -109
  153. telegrinder/types/objects.py +934 -826
  154. telegrinder/verification_utils.py +0 -2
  155. {telegrinder-0.3.4.post1.dist-info → telegrinder-0.4.0.dist-info}/LICENSE +2 -2
  156. telegrinder-0.4.0.dist-info/METADATA +144 -0
  157. telegrinder-0.4.0.dist-info/RECORD +182 -0
  158. {telegrinder-0.3.4.post1.dist-info → telegrinder-0.4.0.dist-info}/WHEEL +1 -1
  159. telegrinder/bot/rules/adapter/__init__.py +0 -17
  160. telegrinder/bot/rules/adapter/abc.py +0 -31
  161. telegrinder/node/message.py +0 -14
  162. telegrinder/node/update.py +0 -15
  163. telegrinder/tools/formatting/links.py +0 -38
  164. telegrinder/tools/kb_set/__init__.py +0 -4
  165. telegrinder/tools/kb_set/base.py +0 -15
  166. telegrinder/tools/kb_set/yaml.py +0 -63
  167. telegrinder-0.3.4.post1.dist-info/METADATA +0 -110
  168. telegrinder-0.3.4.post1.dist-info/RECORD +0 -165
  169. /telegrinder/{bot/rules → tools}/adapter/errors.py +0 -0
@@ -1,110 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: telegrinder
3
- Version: 0.3.4.post1
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=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=AuQQqPw9O3xpu6gEVdO2jB2q-rjJLkyB9MHjr8jTiuI,9114
11
- telegrinder/bot/cute_types/callback_query.py,sha256=xbG15K05KM1BmFISKrkloYvNmbiew3zQ27d3i65QEU4,18869
12
- telegrinder/bot/cute_types/chat_join_request.py,sha256=Ltvqd4LbJ8ZqCXBHPsvxKEwFLAbuKzXhmKYoY6Sp70Y,2001
13
- telegrinder/bot/cute_types/chat_member_updated.py,sha256=pQHDK-9pRLmOLcUJBF-dvg_ifhjpmG9XBuyZdiRtghE,6336
14
- telegrinder/bot/cute_types/inline_query.py,sha256=hVuXkiHlpJpVSDX00cu7Gy9FwBeFfjOclpPMHhp6rBI,1505
15
- telegrinder/bot/cute_types/message.py,sha256=2De183SpzIAmpa-wCw9DCQYKVfiug6mrlWBAWTW61XE,138853
16
- telegrinder/bot/cute_types/update.py,sha256=SrTixzD03QC2m27IKE9TJQya9I28DWeJJQzQMSiWkws,3895
17
- telegrinder/bot/cute_types/utils.py,sha256=BYKXFGvDV3njFfiwHSMJ9atYh6KwU2u1ndoVtJhIv3w,2512
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=1aRJidNaNghUE4O9Sw2_e0-b1jLPUhw3Xln48aoQlgc,2769
21
- telegrinder/bot/dispatch/dispatch.py,sha256=23P7EBsCYVlbX56-g8p2_HUhteTJMZTZEX_Vt4QP4DE,6394
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=D-jMyfddsc4m7E9fjYn5EoaP5xNtneqMcV6GTK8uoUY,5120
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=vXvIRv3tJOKjjinqJKxWw2ud-0l2E0YmZef5yXVe8fs,601
35
- telegrinder/bot/dispatch/process.py,sha256=i0uFlvMrZEJ4zelSWMLnOBdbwabUpdaXaCFE0FSA5I0,4994
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=fdiRBn-XwAJe4qtDKTz6USff2i3DFdkiH7X88idPZLg,6510
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=umHTR0MaDYKYYDt6yGa9eEgftjHaVAYE8sXin4kBjIc,3467
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=Z-kcu3uzaz3gX9QZeyNEiPyh87MM93qS9-IgZvW-NLU,5892
59
- telegrinder/bot/dispatch/waiter_machine/middleware.py,sha256=6cXjKASm1I3QPW_FaNU62c1mOleRt9OsuwWY1_zyhwQ,2976
60
- telegrinder/bot/dispatch/waiter_machine/short_state.py,sha256=ujU5n84k49GJKR1hZCRFj8LlEHIyum1C0Vm656eh-x8,2072
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=ob09fI9YTOfuYFu72ugPD12Gl3xXfCD66jNjvQS2aRI,4767
64
- telegrinder/bot/rules/__init__.py,sha256=nl2erwXAnICnZwAuqZr5wPm3tLjHGxMU7Qyi03Jym44,2859
65
- telegrinder/bot/rules/abc.py,sha256=jiPorngpQsAl2mgBHrrE_j-9A8Wp_5ilg8AOytHckOQ,6511
66
- telegrinder/bot/rules/adapter/__init__.py,sha256=y4zWoRMH0iDN_Pw0T1PYlT-xlLwIjyqZHkJ4yrvhY6c,568
67
- telegrinder/bot/rules/adapter/abc.py,sha256=45A5pVLfUH5DtaJpj77KZPRn7d5gw-TBrIxOIFo7AFY,789
68
- telegrinder/bot/rules/adapter/errors.py,sha256=2r_UBTWm5-heU-NchBfobC1f848EWeC64nKvprGnAAY,73
69
- telegrinder/bot/rules/adapter/event.py,sha256=fPOhly47NsadoEM_uNJm9NkjE-9HxnDbG7_yL2qzO4I,2417
70
- telegrinder/bot/rules/adapter/node.py,sha256=a0IvjDqSOY-sZYJ3eChvui_YSOXlZPo4x0qay05ebkk,1667
71
- telegrinder/bot/rules/adapter/raw_event.py,sha256=8xlvDvy15rcBwYAN07B0AeBMQsEEIR8Gz1oTqtKWCco,983
72
- telegrinder/bot/rules/adapter/raw_update.py,sha256=gbPAqm4uVoT1pd1mXJfhQGmUjgbDMnLmBUF4i6K1nXs,1005
73
- telegrinder/bot/rules/callback_data.py,sha256=NPzpQtG8Q-CuI1L61krZW7Ah0rArKUUgopsZU4hBzlU,5561
74
- telegrinder/bot/rules/chat_join.py,sha256=GOnaJLYsVep5sOQACVxiA4aSihNNNop2ga9XnQAwhTo,1379
75
- telegrinder/bot/rules/command.py,sha256=gYEWkrOr_xBWXbCnEXBrDs8EHRyW-pwrlascVRmS854,3906
76
- telegrinder/bot/rules/enum_text.py,sha256=c-B3_iF6nZOnOY1A8s500W37XYeEyQaJIl1OU5aZ3V0,968
77
- telegrinder/bot/rules/func.py,sha256=dqcxhC7dIP67Zi20iFz2jCWwwioM2NuemCM5dwpQDXg,769
78
- telegrinder/bot/rules/fuzzy.py,sha256=GhI0Eqf5Y69bvIlYDvGbGH6RNQqW81aXK3YV5OVlZ04,670
79
- telegrinder/bot/rules/inline.py,sha256=oG4JmjSNLU1SHXmHFU4doDz-dWeuo4m36LxERLHjhUM,1928
80
- telegrinder/bot/rules/integer.py,sha256=nDabEsuGfzC8cBuOtUCAkeWyFHW6u_BKvvcya2HJr-c,429
81
- telegrinder/bot/rules/is_from.py,sha256=_ZFdPg6zAsXJ8Cb-sjcRc9fsonzmvGJvh-5Fca2JPTI,3700
82
- telegrinder/bot/rules/markup.py,sha256=Y7PXvE0nlh5GHT2NJqtWzXMiWmGSkfPABF1WFo0xvrw,1328
83
- telegrinder/bot/rules/mention.py,sha256=u5VQbEwb1BuYmXMLE0bxLde4fDcvEGCq3JAg0dhuaN8,429
84
- telegrinder/bot/rules/message.py,sha256=ts5576C8j2oX4kH2UluB9l0YcIeiHUuxPW6ixZ4mVBM,426
85
- telegrinder/bot/rules/message_entities.py,sha256=S0vxpXPld7gGESMpk7lb37OnPXGcLYCWWXqcMMwQHHM,1085
86
- telegrinder/bot/rules/node.py,sha256=CQGzT-pOmuh2Wkbq-1WvOzzWrM3vVsRlGEzBUCZ1v6w,886
87
- telegrinder/bot/rules/regex.py,sha256=PKryH44NGqeKiW53OggwCsGSFh_rQTddMojQ3AQme5A,1147
88
- telegrinder/bot/rules/rule_enum.py,sha256=35GwPKLBTG_ESn4TZLcFJTLNjYXAi_d9wrfIDexoEH8,2113
89
- telegrinder/bot/rules/start.py,sha256=AipwfOQ2LGCofvgouRmkIiY9mGFLlEUJ-7a3CLIiy4Q,1147
90
- telegrinder/bot/rules/state.py,sha256=3hJTT2yVTqGbsdC52qCXqXyctnCZeZuNC7TkpfDjXic,975
91
- telegrinder/bot/rules/text.py,sha256=JyypoDCoR6LM2lmK0Ej5sfcXwtGwbLibY7-96w3a80s,987
92
- telegrinder/bot/rules/update.py,sha256=-mE12-xy0AjOz9RVRVZ8vS7ohGCuf_bNmG26rDbrjfg,392
93
- telegrinder/bot/scenario/__init__.py,sha256=nnPjdxdvjoEYYMRUEfWvIhZStiY1C984x1azdRRP9II,136
94
- telegrinder/bot/scenario/abc.py,sha256=3UwnA9Nt6CETKm2YclD0gVbn-483fTSBriZADd3p-bM,468
95
- telegrinder/bot/scenario/checkbox.py,sha256=h4ySwNBKqTrswh5ND5JucVdhHDBQ1Y86EMyyZPxgD-s,5309
96
- telegrinder/bot/scenario/choice.py,sha256=bpdMRxIqG_K656fHAv82S2-2r5mzfyqBTvnjRbDPNss,1883
97
- telegrinder/client/__init__.py,sha256=ZiS1Wb_l_kv3FHzEEi1oXtFLwlA_HXmWOzeN0xA3E7Y,104
98
- telegrinder/client/abc.py,sha256=OxsTX_PLYBEeFT9zpidFUzAbQL9BM7rQqru7zdn5DiQ,1611
99
- telegrinder/client/aiohttp.py,sha256=gVYHhhfqdsC1OJ0x6AhK2V1x0yjeXe1PwDC0I3T6UPg,3903
100
- telegrinder/model.py,sha256=NpEMiaR-QVO6pRVOM8Un0-G7d4HAcYPDi36LrWTj2Hc,9298
101
- telegrinder/modules.py,sha256=2gJ2051972nPWVya71dsbJll6rdMEyL-_jENjvQMZLY,7777
102
- telegrinder/msgspec_json.py,sha256=eDuRTP_bFYWtNPDINuzY2OGKXbdleaKyXh2mQgfJdMk,237
103
- telegrinder/msgspec_utils.py,sha256=db0ZUoyIN2cLpFC_4hrl8fr2lHRdPBaatp4gjHS0Qak,12374
104
- telegrinder/node/__init__.py,sha256=zIyuuEAlTB-rqJo8FqKoP_Fv49FJLxgWfOD99VlFgTs,1490
105
- telegrinder/node/attachment.py,sha256=W172F6bgxacrfyNRQCzBntwNRqlz3wd-dKefpZE8Pmc,3025
106
- telegrinder/node/base.py,sha256=iUFbPODLNbCftJzPJUf05OH_lom0p5NRH5Q2dpfj1r0,4517
107
- telegrinder/node/callback_query.py,sha256=Sv1G6c9IajSMum3cX4CK_CX9pGeT-8yRb9r1YfXeHCc,1731
108
- telegrinder/node/command.py,sha256=W6DAikNZ_TFliaoLuhpuIR_D0kLkMdrPd8HjsdcB4_Y,907
109
- telegrinder/node/composer.py,sha256=sORF949fiufdQv5ipctq2Ou24t6GtvDtbpQlHoCbPQI,6776
110
- telegrinder/node/container.py,sha256=_EUXChgKJCiUnEgR06cNzk4suMHqyLbMKMU54Mqe5yE,835
111
- telegrinder/node/event.py,sha256=KmtoC2vbrBuPcjXn40wA6TPWzhS16bPSib3tiulmM8o,2115
112
- telegrinder/node/me.py,sha256=jLAkRbcIijiN7UXZ62Q5F7VgCsmlgBLiU1reffnESQc,417
113
- telegrinder/node/message.py,sha256=ADlNe_b6fUX5jHpoqu4wSyHKR72pXgn6L6CXGaKAb0Q,443
114
- telegrinder/node/polymorphic.py,sha256=CNQ6YmQtO97y3TRHGFn4D4z0JWS-gONwOeIkbmDz2zM,2027
115
- telegrinder/node/rule.py,sha256=pzNAWL7BLQdTAGs-Qe8X9uywHwN3vqMFoVjxqf-gzYk,2506
116
- telegrinder/node/scope.py,sha256=SBC4j6MoqQxhtYzjgLYkfjd0-b8moFOEKm6hQt3fno8,708
117
- telegrinder/node/source.py,sha256=1iR9DgmbtO38LRZi1yphteypFaDHAjIh_YPSeff0Lvw,2291
118
- telegrinder/node/text.py,sha256=ikDbAf9vaBZV_hnzk-DpRhnWwa9TkzshUplMaFWQmkA,1074
119
- telegrinder/node/tools/__init__.py,sha256=iyjs82g3brYGzpPsUQaoK6_r7YuQhRkJ61YjjuPOx9E,67
120
- telegrinder/node/tools/generator.py,sha256=YBgQb4ykWT_5RKzkT4V3SmhtjWC0fhkCuKIyB3TkaOw,1102
121
- telegrinder/node/update.py,sha256=Z1vKLIuuXnGjxKOGTJgsdDSJMsFQF8qMj9coX2hDJ30,447
122
- telegrinder/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
- telegrinder/rules.py,sha256=exnbhmzEKnIoYIrOBHgJmvC0cq8qTczFqS3lDPZsu_s,1145
124
- telegrinder/tools/__init__.py,sha256=DJ1fzGRlxMJ4SzsSAW_hzk6q9YPfY5fxMX-hL7zTMak,2977
125
- telegrinder/tools/buttons.py,sha256=3JONQh3ua2eFEyDj2aK47WUwcVrYVKWSwnPIOghy_e0,2940
126
- telegrinder/tools/error_handler/__init__.py,sha256=WmYWZCNhhSk32j4lIOltEwzoYUx086TGTbOF5h3Ps7s,207
127
- telegrinder/tools/error_handler/abc.py,sha256=KK6cE8_95scCt74l2NCumHbQmx4WSzRE88c3rl5pWB4,861
128
- telegrinder/tools/error_handler/error.py,sha256=uLcG-wqyOeCEB45m8vMcGy5kZ87bGHUS_-fPw2cGE9s,221
129
- telegrinder/tools/error_handler/error_handler.py,sha256=DWSdU3j1_6EzvvvgMyVw5wifSPdvQPNcLg5_es7HA9k,6710
130
- telegrinder/tools/formatting/__init__.py,sha256=1tFuJjMpDphCIOR4uXQhptyLHuAZ26mYSFx_BQwL5Lo,1459
131
- telegrinder/tools/formatting/html.py,sha256=230nOLTU5HpOzqdyvt3q7x5P5x3096vETH-4ADKdQsY,8710
132
- telegrinder/tools/formatting/links.py,sha256=dYJy2qPxa4YGHYqSSCTv-6hXz0Aa0AGuzsLXwbxPZ9A,1112
133
- telegrinder/tools/formatting/spec_html_formats.py,sha256=I-OULqlof8NOeSNGBddKkudqMLjsMAQ02Pc6qH_fNRQ,2617
134
- telegrinder/tools/functional.py,sha256=WBnOlSoIiO8glq8C3NmfGrgqQYK0yC6ISgQ3HPuRf1A,223
135
- telegrinder/tools/global_context/__init__.py,sha256=5pF9growKd28WO739wk_DZUqCDw5hxs6eUcDtxTosX8,290
136
- telegrinder/tools/global_context/abc.py,sha256=twwAmbTk49KGl_POImr4yj6POr-zdx8mz74McuphZH0,1644
137
- telegrinder/tools/global_context/global_context.py,sha256=U-rdGgPJ5Cde4FuV6IP6jQWxlrvDaH6YYuBSA6RFWHU,13679
138
- telegrinder/tools/global_context/telegrinder_ctx.py,sha256=xky1mUflhHonhI6Q1Mwz2SBO-eKTTBs5qBJbZkuuRK0,724
139
- telegrinder/tools/i18n/__init__.py,sha256=jMrrdFexgMU-BUiKf-p22VowQaqtQeaCb-Cs0fq2Tls,287
140
- telegrinder/tools/i18n/abc.py,sha256=jxJVYiTplJaNeklkGiin-m7BkfZiac2fbVXTEdhNw6o,726
141
- telegrinder/tools/i18n/middleware/__init__.py,sha256=a0yJUYmDbl1Mqf_cWx2TTmA3_Andlk8ixLJyDYAA23I,81
142
- telegrinder/tools/i18n/middleware/abc.py,sha256=jspRUdBYMJ04c2VLOQNbkHCwxIrkqYJh2nG3AMeYUTM,727
143
- telegrinder/tools/i18n/simple.py,sha256=w2SlMKYqJbDK9ScTwCAB6pdskqwtmqV7pK8yEhSUFDA,1564
144
- telegrinder/tools/kb_set/__init__.py,sha256=k1KCQTnvEgJ2y4KlghhJWOh5rccwg_27cs8264NtMmk,156
145
- telegrinder/tools/kb_set/base.py,sha256=mbZs-ViUErfSibzyN064IqZp76LBJPg3NB4D9v4VFtg,243
146
- telegrinder/tools/kb_set/yaml.py,sha256=glk27r0L9Y8ibaPmTHMAEJZw-ED-ehmSo_NdJNKkrNs,2007
147
- telegrinder/tools/keyboard.py,sha256=ik66wyKJvTRsIYuPqRgL_I9I87f5vkUgiFK6qVvUkH8,3845
148
- telegrinder/tools/limited_dict.py,sha256=tb1WT4P3Oia5CsCBXTHzlFjrPnIgf9eHCkQ0zhAbEUg,1078
149
- telegrinder/tools/loop_wrapper/__init__.py,sha256=ZQ5jmE1lOKnqJlMZ9k2OYmjvOEhOlHPijUWqZ4nHIgk,165
150
- telegrinder/tools/loop_wrapper/abc.py,sha256=ET_Dp-kRz75Jo1fZB3qofUgEXN4FqlU0xH2diESKGCM,266
151
- telegrinder/tools/loop_wrapper/loop_wrapper.py,sha256=BgCE9E-u2fO7jr3dgHrnwBVU9WqTcrsT-vxw-reB7J8,7047
152
- telegrinder/tools/magic.py,sha256=jPfjWoNF1cjOewMDpjAajUieSMKNeCSQzyS2fqNwD4M,4597
153
- telegrinder/tools/parse_mode.py,sha256=JyQ-x9YAMPLhIIiUX01acyKkpWgs5TBA07W-iUyPHpE,92
154
- telegrinder/tools/state_storage/__init__.py,sha256=G2EK2HwS0NbRQIu0OotVlgEYtO_GuzN1aJOIxmDEtz4,211
155
- telegrinder/tools/state_storage/abc.py,sha256=9-UOmov9b7bQpeD0JukVsayU2FHmW45FeCnlPdayLhM,958
156
- telegrinder/tools/state_storage/memory.py,sha256=p5ffTYIpliIFgn4OzA33n_qbdt-aeC5cbBh1ELTIK5s,753
157
- telegrinder/types/__init__.py,sha256=vxR7J8Ql4LLGcJy6fZlLCwXA8iyLa8hOFMdE6YDhW3k,6638
158
- telegrinder/types/enums.py,sha256=q9URlXZvrjOUQKpLfV6v9uspBcLrdW0gtU-m8YDnj7w,19017
159
- telegrinder/types/methods.py,sha256=gIqcFHVogw8bbYO7C7tf1xdzE-m5EiKe998NW-IS2fI,201311
160
- telegrinder/types/objects.py,sha256=R1ITVodqpUuxt1WhL81fpC4IDNE2glgJYs596YDecpE,292442
161
- telegrinder/verification_utils.py,sha256=X7N0mHoOzbcYeKa5XxI_EFhmEGX5XNU3qqgbV8YRRa4,987
162
- telegrinder-0.3.4.post1.dist-info/LICENSE,sha256=Q0tKgU8mPOCQAkc6m__BrNIpRge8mPBQJDd59s21NZo,1095
163
- telegrinder-0.3.4.post1.dist-info/METADATA,sha256=6vO0g7_qjXiVqPZfbuoB3HPrpndz8GnYpWEzd4kAHCk,3149
164
- telegrinder-0.3.4.post1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
165
- telegrinder-0.3.4.post1.dist-info/RECORD,,
File without changes