telegrinder 0.1.dev158__py3-none-any.whl → 0.1.dev160__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 (128) hide show
  1. telegrinder/__init__.py +4 -2
  2. telegrinder/api/__init__.py +0 -0
  3. telegrinder/api/abc.py +6 -4
  4. telegrinder/api/api.py +25 -11
  5. telegrinder/api/error.py +0 -0
  6. telegrinder/api/response.py +0 -0
  7. telegrinder/bot/__init__.py +0 -0
  8. telegrinder/bot/bot.py +0 -0
  9. telegrinder/bot/cute_types/__init__.py +0 -0
  10. telegrinder/bot/cute_types/base.py +100 -9
  11. telegrinder/bot/cute_types/callback_query.py +426 -37
  12. telegrinder/bot/cute_types/inline_query.py +44 -17
  13. telegrinder/bot/cute_types/message.py +2885 -117
  14. telegrinder/bot/cute_types/update.py +14 -7
  15. telegrinder/bot/cute_types/utils.py +542 -0
  16. telegrinder/bot/dispatch/__init__.py +0 -0
  17. telegrinder/bot/dispatch/abc.py +0 -0
  18. telegrinder/bot/dispatch/composition.py +0 -0
  19. telegrinder/bot/dispatch/context.py +0 -0
  20. telegrinder/bot/dispatch/dispatch.py +0 -0
  21. telegrinder/bot/dispatch/handler/__init__.py +0 -0
  22. telegrinder/bot/dispatch/handler/abc.py +0 -0
  23. telegrinder/bot/dispatch/handler/func.py +1 -1
  24. telegrinder/bot/dispatch/handler/message_reply.py +0 -0
  25. telegrinder/bot/dispatch/middleware/__init__.py +0 -0
  26. telegrinder/bot/dispatch/middleware/abc.py +0 -0
  27. telegrinder/bot/dispatch/process.py +0 -0
  28. telegrinder/bot/dispatch/return_manager/__init__.py +0 -0
  29. telegrinder/bot/dispatch/return_manager/abc.py +0 -0
  30. telegrinder/bot/dispatch/return_manager/callback_query.py +0 -0
  31. telegrinder/bot/dispatch/return_manager/inline_query.py +0 -0
  32. telegrinder/bot/dispatch/return_manager/message.py +0 -0
  33. telegrinder/bot/dispatch/view/__init__.py +0 -0
  34. telegrinder/bot/dispatch/view/abc.py +40 -29
  35. telegrinder/bot/dispatch/view/box.py +0 -0
  36. telegrinder/bot/dispatch/view/callback_query.py +0 -0
  37. telegrinder/bot/dispatch/view/inline_query.py +0 -0
  38. telegrinder/bot/dispatch/view/message.py +0 -0
  39. telegrinder/bot/dispatch/waiter_machine/__init__.py +0 -0
  40. telegrinder/bot/dispatch/waiter_machine/machine.py +0 -0
  41. telegrinder/bot/dispatch/waiter_machine/middleware.py +0 -0
  42. telegrinder/bot/dispatch/waiter_machine/short_state.py +0 -0
  43. telegrinder/bot/polling/__init__.py +0 -0
  44. telegrinder/bot/polling/abc.py +0 -0
  45. telegrinder/bot/polling/polling.py +7 -11
  46. telegrinder/bot/rules/__init__.py +0 -0
  47. telegrinder/bot/rules/abc.py +1 -1
  48. telegrinder/bot/rules/adapter/__init__.py +0 -0
  49. telegrinder/bot/rules/adapter/abc.py +0 -0
  50. telegrinder/bot/rules/adapter/errors.py +0 -0
  51. telegrinder/bot/rules/adapter/event.py +12 -6
  52. telegrinder/bot/rules/adapter/raw_update.py +0 -0
  53. telegrinder/bot/rules/callback_data.py +3 -11
  54. telegrinder/bot/rules/command.py +0 -0
  55. telegrinder/bot/rules/enum_text.py +0 -0
  56. telegrinder/bot/rules/func.py +0 -0
  57. telegrinder/bot/rules/fuzzy.py +0 -0
  58. telegrinder/bot/rules/inline.py +2 -1
  59. telegrinder/bot/rules/integer.py +0 -0
  60. telegrinder/bot/rules/is_from.py +0 -0
  61. telegrinder/bot/rules/markup.py +3 -1
  62. telegrinder/bot/rules/mention.py +0 -0
  63. telegrinder/bot/rules/message_entities.py +3 -1
  64. telegrinder/bot/rules/regex.py +1 -1
  65. telegrinder/bot/rules/rule_enum.py +0 -0
  66. telegrinder/bot/rules/start.py +0 -0
  67. telegrinder/bot/rules/text.py +0 -0
  68. telegrinder/bot/scenario/__init__.py +0 -0
  69. telegrinder/bot/scenario/abc.py +0 -0
  70. telegrinder/bot/scenario/checkbox.py +0 -0
  71. telegrinder/bot/scenario/choice.py +0 -0
  72. telegrinder/client/__init__.py +2 -2
  73. telegrinder/client/abc.py +35 -12
  74. telegrinder/client/aiohttp.py +35 -22
  75. telegrinder/model.py +70 -23
  76. telegrinder/modules.py +22 -12
  77. telegrinder/msgspec_json.py +0 -0
  78. telegrinder/msgspec_utils.py +30 -10
  79. telegrinder/node/__init__.py +0 -0
  80. telegrinder/node/attachment.py +0 -0
  81. telegrinder/node/base.py +0 -0
  82. telegrinder/node/composer.py +0 -0
  83. telegrinder/node/container.py +0 -0
  84. telegrinder/node/message.py +0 -0
  85. telegrinder/node/rule.py +0 -0
  86. telegrinder/node/source.py +0 -0
  87. telegrinder/node/text.py +0 -0
  88. telegrinder/node/tools/__init__.py +0 -0
  89. telegrinder/node/tools/generator.py +0 -0
  90. telegrinder/node/update.py +0 -0
  91. telegrinder/rules.py +0 -0
  92. telegrinder/tools/__init__.py +2 -30
  93. telegrinder/tools/buttons.py +19 -5
  94. telegrinder/tools/error_handler/__init__.py +2 -0
  95. telegrinder/tools/error_handler/abc.py +5 -1
  96. telegrinder/tools/error_handler/error.py +10 -0
  97. telegrinder/tools/error_handler/error_handler.py +100 -81
  98. telegrinder/tools/formatting/__init__.py +0 -0
  99. telegrinder/tools/formatting/html.py +0 -0
  100. telegrinder/tools/formatting/links.py +0 -0
  101. telegrinder/tools/formatting/spec_html_formats.py +0 -0
  102. telegrinder/tools/global_context/__init__.py +0 -0
  103. telegrinder/tools/global_context/abc.py +0 -0
  104. telegrinder/tools/global_context/global_context.py +65 -67
  105. telegrinder/tools/global_context/telegrinder_ctx.py +0 -0
  106. telegrinder/tools/i18n/__init__.py +0 -0
  107. telegrinder/tools/i18n/base.py +0 -0
  108. telegrinder/tools/i18n/middleware/__init__.py +0 -0
  109. telegrinder/tools/i18n/middleware/base.py +0 -0
  110. telegrinder/tools/i18n/simple.py +0 -0
  111. telegrinder/tools/kb_set/__init__.py +0 -0
  112. telegrinder/tools/kb_set/base.py +0 -0
  113. telegrinder/tools/kb_set/yaml.py +3 -3
  114. telegrinder/tools/keyboard.py +17 -26
  115. telegrinder/tools/loop_wrapper/__init__.py +0 -0
  116. telegrinder/tools/loop_wrapper/abc.py +0 -0
  117. telegrinder/tools/loop_wrapper/loop_wrapper.py +0 -0
  118. telegrinder/tools/magic.py +1 -1
  119. telegrinder/tools/parse_mode.py +0 -0
  120. telegrinder/types/__init__.py +0 -0
  121. telegrinder/types/enums.py +13 -9
  122. telegrinder/types/methods.py +783 -673
  123. telegrinder/types/objects.py +317 -163
  124. {telegrinder-0.1.dev158.dist-info → telegrinder-0.1.dev160.dist-info}/LICENSE +0 -0
  125. {telegrinder-0.1.dev158.dist-info → telegrinder-0.1.dev160.dist-info}/METADATA +9 -7
  126. {telegrinder-0.1.dev158.dist-info → telegrinder-0.1.dev160.dist-info}/RECORD +42 -41
  127. {telegrinder-0.1.dev158.dist-info → telegrinder-0.1.dev160.dist-info}/WHEEL +1 -1
  128. telegrinder/tools/inline_query.py +0 -684
@@ -1,32 +1,34 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: telegrinder
3
- Version: 0.1.dev158
3
+ Version: 0.1.dev160
4
4
  Summary: Framework for effective and reliable async telegram bot building.
5
5
  Home-page: https://github.com/timoniq/telegrinder
6
6
  License: MIT
7
- Keywords: telegram,telegram bot api framework,telegrinder,asyncio,middleware,composition,bot api,async
7
+ Keywords: asyncio,api schema,async,bot building,bot api,custom rules,telegram,telegram bot api framework,telegrinder,middleware,composition
8
8
  Author: timoniq
9
9
  Author-email: tesseradecades@mail.ru
10
10
  Maintainer: luwqz1
11
+ Maintainer-email: howluwqz1@gmail.com
11
12
  Requires-Python: >=3.11,<4.0
12
13
  Classifier: Environment :: Console
13
14
  Classifier: Intended Audience :: Developers
14
15
  Classifier: License :: OSI Approved :: MIT License
15
16
  Classifier: Programming Language :: Python :: 3
16
17
  Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
17
19
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
20
  Classifier: Topic :: Software Development :: Quality Assurance
19
21
  Classifier: Typing :: Typed
20
22
  Requires-Dist: PyYAML (>=6.0,<7.0)
21
23
  Requires-Dist: aiohttp (>=3.8.1,<4.0.0)
22
- Requires-Dist: certifi (>=2022.6.15,<2023.0.0)
24
+ Requires-Dist: certifi (>=2024.2.2,<2025.0.0)
23
25
  Requires-Dist: choicelib (>=0.1.5,<0.2.0)
24
26
  Requires-Dist: colorama (>=0.4.0,<0.5.0)
25
27
  Requires-Dist: envparse (>=0.2.0,<0.3.0)
26
- Requires-Dist: fntypes (>=0.1.1,<0.2.0)
27
- Requires-Dist: msgspec (>=0.18.4,<0.19.0)
28
+ Requires-Dist: fntypes (>=0.1.2.post1,<0.2.0)
29
+ Requires-Dist: msgspec (>=0.18.6,<0.19.0)
28
30
  Requires-Dist: requests (>=2.28.1,<3.0.0)
29
- Requires-Dist: typing-extensions (>=4.8.0,<5.0.0)
31
+ Requires-Dist: typing-extensions (>=4.10.0,<5.0.0)
30
32
  Requires-Dist: vbml (>=1.1.post1,<2.0)
31
33
  Project-URL: Repository, https://github.com/timoniq/telegrinder
32
34
  Description-Content-Type: text/markdown
@@ -74,9 +76,9 @@ from telegrinder import API, Message, Telegrinder, Token
74
76
  from telegrinder.modules import logger
75
77
  from telegrinder.rules import Text
76
78
 
77
- logger.set_level("INFO")
78
79
  api = API(token=Token("123:token"))
79
80
  bot = Telegrinder(api)
81
+ logger.set_level("INFO")
80
82
 
81
83
 
82
84
  @bot.on.message(Text("/start"))
@@ -1,17 +1,18 @@
1
- telegrinder/__init__.py,sha256=tuusAaob1cu2swfwv86_eSZWpJrfEcCZ2QyzS8u6HAM,2821
1
+ telegrinder/__init__.py,sha256=iAaXnpZbc6xcdpHv56K6Hbi8KFryT--wC8UZo4sOUXk,2859
2
2
  telegrinder/api/__init__.py,sha256=pIDtnsL0NwT5PgVm43Gkp-ByOqDsqnD-oFDiC9tcPT4,246
3
- telegrinder/api/abc.py,sha256=Ms81jKwz0XTcFMvoT5AwuRnbaBuxgVYnRCqrI6RFfLU,1509
4
- telegrinder/api/api.py,sha256=E9VOqhp55GDxpSRTDxYq6cLcqYs6eXTKJ4ohWPcMLxA,1966
3
+ telegrinder/api/abc.py,sha256=STaVKkWr4SCfVrmNXU-JpSmaNNIeb8oB1S4jxOuucX8,1688
4
+ telegrinder/api/api.py,sha256=d3K5QSL_Ist40qddoTy18-RQ2f7jh1Vvjn6LShp0QII,2400
5
5
  telegrinder/api/error.py,sha256=7qOYpP3P-s1p235Gp4VhCxcpY5VX8KyK_md3_-M-NCQ,390
6
6
  telegrinder/api/response.py,sha256=d7Oxd5kOdbZNJiALkzkecHl8Y3K_BzCmsRq2Sn3otqA,491
7
7
  telegrinder/bot/__init__.py,sha256=tLEUne5ftvKUVlkMAtPTO1_TSHkYJBbG73LuiBeC7gk,1560
8
8
  telegrinder/bot/bot.py,sha256=C-egmfFZdYDBCxcyfq7GrIWUZ1WOZeUD9ulVG5Ksbd0,2222
9
9
  telegrinder/bot/cute_types/__init__.py,sha256=HeuWq297lY209MssrEbj5MsxsGfOhwVLo1pH_-pHv_I,295
10
- telegrinder/bot/cute_types/base.py,sha256=W1kifloiXh6SdyJPeaAot7Z4o60PUfVNH-Lzkb6S4RU,1115
11
- telegrinder/bot/cute_types/callback_query.py,sha256=lZPQGOEEWK2Vh6FfXPPxeDinCTREEskEewg8XFGATs8,2522
12
- telegrinder/bot/cute_types/inline_query.py,sha256=08XA8dHmTyfCXIUkyMWrfTrjW6I8t2v1UcB17lKWvmk,1254
13
- telegrinder/bot/cute_types/message.py,sha256=JJ3rVNZJJj7KjNhRum-tV4a8vPv4bhPTy4v368ysxaI,6888
14
- telegrinder/bot/cute_types/update.py,sha256=6BAvgX6uRlJUT-XkBLTtnZX5UKLhO6-qqTaMod4WfrM,572
10
+ telegrinder/bot/cute_types/base.py,sha256=uvm9XcdPqnE0vq6DcuuIqWSfp2UO-zuQIs7Fa5GlJLY,4631
11
+ telegrinder/bot/cute_types/callback_query.py,sha256=gSohTLjq9IQimya41Vl6i8HvGSKwLzbkjV00Jgp13QY,20270
12
+ telegrinder/bot/cute_types/inline_query.py,sha256=QmaYkXSOQHrkWs7N6eD_HiTGGOtegN10hVppU37z3bE,2475
13
+ telegrinder/bot/cute_types/message.py,sha256=zIh5OInA-b7EpDd_f_VuemagaGUtZcYR_uIuYj3276k,134059
14
+ telegrinder/bot/cute_types/update.py,sha256=VakZ2FwapOJvpEBIyzuiT8eftHHzBS-uPXrAUROQxOg,752
15
+ telegrinder/bot/cute_types/utils.py,sha256=Gp7zHUn5gEfxFItIYbzkaj6wxWoPNe7hM9abHkn3Jug,16349
15
16
  telegrinder/bot/dispatch/__init__.py,sha256=o10t98PY1BuIGaJcloxfbgUYp0bf5ZqAaBQScIaV3VQ,1322
16
17
  telegrinder/bot/dispatch/abc.py,sha256=3bOKEFJTKarwqWTDqhscVw2U5FBllJ-TyId-aUPzb7c,454
17
18
  telegrinder/bot/dispatch/composition.py,sha256=3oYaL7IOnYC2Al0SJ4pk89LTqH8i0eP48t-4-BDtqRQ,2546
@@ -19,7 +20,7 @@ telegrinder/bot/dispatch/context.py,sha256=Uk_GFN3wlLuS5BGgBaLfLxU8xBp_yB4fPJcuz
19
20
  telegrinder/bot/dispatch/dispatch.py,sha256=ZjCm-0ZNywlhmd_-1jKJYUHhLRHASLOb8hbmhsBUb48,3783
20
21
  telegrinder/bot/dispatch/handler/__init__.py,sha256=mzchbArrm0eoTEeVKHYrtJX4WSfW5t6T4xDU3-mtYaA,169
21
22
  telegrinder/bot/dispatch/handler/abc.py,sha256=ffa9zmIcaIkIuQk8JKBty2pf53woH6hzIkQb0wmqA3k,573
22
- telegrinder/bot/dispatch/handler/func.py,sha256=eoJ8RE-am2Pc49WlOCFTP3UwhVQ-k01Az1UuaTYnzc0,2074
23
+ telegrinder/bot/dispatch/handler/func.py,sha256=B2rUH5Adm5RI4bE-49cbf5FCYTxsw2M3cJ-2GMctC0o,2085
23
24
  telegrinder/bot/dispatch/handler/message_reply.py,sha256=pfFINSLwTsx9buHwVW1ahVRWYQZn0QKyIazkO8D5MVo,1425
24
25
  telegrinder/bot/dispatch/middleware/__init__.py,sha256=qDuTt2ZZKX9UMjPdw5xaaNZdMI-i3P4Px2T8qbYCMJw,61
25
26
  telegrinder/bot/dispatch/middleware/abc.py,sha256=RWmr1agbvCabsh-m1WeQORi-Lrkt1xRBidKkugzA41Y,421
@@ -30,7 +31,7 @@ telegrinder/bot/dispatch/return_manager/callback_query.py,sha256=FV_bVdJRbtVNRvf
30
31
  telegrinder/bot/dispatch/return_manager/inline_query.py,sha256=erJ54AXSG_1lACnzmP1CIQYT4RkHT4Ml5PeRD1bkHK4,452
31
32
  telegrinder/bot/dispatch/return_manager/message.py,sha256=eXjQEm1qBv5W9MfvdAfleytarR7UY_Ksnpv4EAaMfQY,824
32
33
  telegrinder/bot/dispatch/view/__init__.py,sha256=iMReW_At2YzenjUGOgrVnOcHLVJAIQAfI9DdQElZdcM,379
33
- telegrinder/bot/dispatch/view/abc.py,sha256=YbGTIPMh9tXsombgxhfYhxVdcz4O5NBVy98xf521hm0,4475
34
+ telegrinder/bot/dispatch/view/abc.py,sha256=YJ_FI1SkF2bMg6yFjz2JuvwE7j_Qv6_jky-Ytfe_1Ow,4685
34
35
  telegrinder/bot/dispatch/view/box.py,sha256=PbIZrAArerS0DjrltTtDorUNqTMyTaXKyF_F6KwMHzc,1197
35
36
  telegrinder/bot/dispatch/view/callback_query.py,sha256=iL6DbB8ucXGvlv0w8eyMeZ94S1xz181pIn2yvYK1N_8,636
36
37
  telegrinder/bot/dispatch/view/inline_query.py,sha256=ZcT1iCE8uRQ_PeaXGcOsXrMmIl2ow0YTTtDzuQ2kgjU,527
@@ -41,26 +42,26 @@ telegrinder/bot/dispatch/waiter_machine/middleware.py,sha256=MExbbYO9Bs_fBv1UTr2
41
42
  telegrinder/bot/dispatch/waiter_machine/short_state.py,sha256=SUvbRRFuNKIZ6QPqp__eh7TrhDXAbBC4MuOjwBQUAUc,1106
42
43
  telegrinder/bot/polling/__init__.py,sha256=OqfIFPS_V6UrCg-vCv9pkMFzTKdNbDP2faBfATs_TGg,94
43
44
  telegrinder/bot/polling/abc.py,sha256=-5BpX55SJfDlEJWt15yOXWCizQRrgeY5oiA5eHkm1Nw,434
44
- telegrinder/bot/polling/polling.py,sha256=xAPCyTFzL-5oKgI_Ty-R_Qcx0kcNDXjdqRqZWTgwXFQ,4361
45
+ telegrinder/bot/polling/polling.py,sha256=GPXXlAhI81PZVUMGXsPd4j67GO19zozMRJaVNAgsBMg,4280
45
46
  telegrinder/bot/rules/__init__.py,sha256=d53pGSOmyGwG810JoorPZ0wBArZCbiWmk1hYoDQL7FY,2047
46
- telegrinder/bot/rules/abc.py,sha256=tOP7hTMaIWgSxRDWrabJRIYBxKsQE8b9a_Vh1xJuFB8,3664
47
+ telegrinder/bot/rules/abc.py,sha256=yqHIvvSuBTser6UCJgnVj1HHh7gfghzYaoV9hAFhfFM,3676
47
48
  telegrinder/bot/rules/adapter/__init__.py,sha256=jFWpi3te8n-Ega3caCwLiA3iTW7F86brae0TZzH_BaU,231
48
49
  telegrinder/bot/rules/adapter/abc.py,sha256=VxRGQbNtdfA6gZyTk0JjJBdB5n_7g6uwseewtovZEK8,558
49
50
  telegrinder/bot/rules/adapter/errors.py,sha256=2r_UBTWm5-heU-NchBfobC1f848EWeC64nKvprGnAAY,73
50
- telegrinder/bot/rules/adapter/event.py,sha256=MDPqFQ9sbQK2MDNTHgyJ7lTwohhJ7e89ZE5FKUNUkVs,1436
51
+ telegrinder/bot/rules/adapter/event.py,sha256=7VnPRLQnrK0lc5UD0Yjq46B2MO567kswRf9IaX1uFsg,1704
51
52
  telegrinder/bot/rules/adapter/raw_update.py,sha256=K0bwq3Hh-hIs_xbEYDOgZHMS4r-Zvo3VKs1B3gkJLGA,752
52
- telegrinder/bot/rules/callback_data.py,sha256=J81mF2m-108Cr9o_j-ySFbMvDVo8aXLLDEQCUa5punI,5744
53
+ telegrinder/bot/rules/callback_data.py,sha256=iRRIl2wS8iAUbQz_ldMDvwJOdituFwePtRCur0SiMWc,5594
53
54
  telegrinder/bot/rules/command.py,sha256=2qzcLr_r4g7i5Hndhfd7zyoDfVCLPplr-Ijbr_yE4jo,3322
54
55
  telegrinder/bot/rules/enum_text.py,sha256=w5pLQNvBRgrRgh1QA_wATprNcJyt_nQ5t_-bD9BFO9s,901
55
56
  telegrinder/bot/rules/func.py,sha256=rhLXf6FjS0p3Nx1ZHqmV7uelUYJOkCf1gwc-SZSyRCo,707
56
57
  telegrinder/bot/rules/fuzzy.py,sha256=ReweSKmql4a6AHFv2tXqCQoGktYpeezBLWvW_hS1YJg,712
57
- telegrinder/bot/rules/inline.py,sha256=vtQtsnUSYIf7kUBs9mPjyvMz2cE8spYSbomS4tY6RBc,1918
58
+ telegrinder/bot/rules/inline.py,sha256=iN3BQr-TabRBItk0Gcy_YeqPhebnVmKgP1c_MEMpR_Q,1950
58
59
  telegrinder/bot/rules/integer.py,sha256=iZWctQQbrUV5kIhv8GI-O3iYzeI2d0dUdQ8uCaLB9gQ,531
59
60
  telegrinder/bot/rules/is_from.py,sha256=lnpbu9WXXc_sTyrPZxOjBOhZlw1JCD10j2wCG2yXJFQ,4753
60
- telegrinder/bot/rules/markup.py,sha256=setJpQPdBfR0s5x-tUFQiNFQwfSlCUnB-7YnVNBPyUA,1074
61
+ telegrinder/bot/rules/markup.py,sha256=bgLm4-GKxWB1jm0ZDcKFcqnU5OaKEpJHuiVhWuJqyhc,1107
61
62
  telegrinder/bot/rules/mention.py,sha256=ozXV3awsrJhkFKrTvPEl1iyVkDs0GWMmuRSLSnSdOmo,493
62
- telegrinder/bot/rules/message_entities.py,sha256=QyIzQZOHva7NvLuyw_SeejnvBGj5yf2qG3aD5q3Ti7E,1063
63
- telegrinder/bot/rules/regex.py,sha256=azSNenYp5EBEGNacNLAfaEiPdIrF7L44m8SetOdYfiY,1173
63
+ telegrinder/bot/rules/message_entities.py,sha256=_lWHCNymbV1Sv-f2Q8Ca3SOxqIPSHVyVXgfYIBPy9dE,1096
64
+ telegrinder/bot/rules/regex.py,sha256=wqGEEiFqe5t_RwX9KjVCtg0wRZfwqo1ktGvNBo9JaKE,1191
64
65
  telegrinder/bot/rules/rule_enum.py,sha256=BUd78f7fEa0hfu1Paa384_Q-r0lB-ZWWukqkrFXdn58,2083
65
66
  telegrinder/bot/rules/start.py,sha256=5ok581Ww56g27rE4QkrykbBZ-ER-SnATQNzMGut2PHA,1183
66
67
  telegrinder/bot/rules/text.py,sha256=LaY8A2KUYDZpIllYTRSXXCwWfDN6dnFFmdvXM1nCKvA,1147
@@ -68,13 +69,13 @@ telegrinder/bot/scenario/__init__.py,sha256=sH-n6ZhVPgAiAgQVY9Y8QA4wjkjR5a5z63Oa
68
69
  telegrinder/bot/scenario/abc.py,sha256=3AZYRjZlkbDtyFbsKdZ6BefzWYlJ0DOrGwh8jI3nzv4,474
69
70
  telegrinder/bot/scenario/checkbox.py,sha256=lTPXTxIISCQk2qDmtdj5KLcFsxp5p0QjK8ybT8KHpsk,3956
70
71
  telegrinder/bot/scenario/choice.py,sha256=dbRBBSHwODtik95vm4A5SPMbRrDjqVxUbTfNHnnzsFo,1448
71
- telegrinder/client/__init__.py,sha256=E0g_8KuMWzPqw7OMnCtI8pNn_nfmoA8LXiUTnSFLO4E,130
72
- telegrinder/client/abc.py,sha256=DFC_ct2PQCHXIliD0hYx_dQX0uLgc_ApuOAX_6QKQAM,1177
73
- telegrinder/client/aiohttp.py,sha256=cNm3oPV-qiW8FfGUMBu_lfR335HDQnE3f91kBi9rD0w,3615
74
- telegrinder/model.py,sha256=Nc3bqzdh1JZnllnITs7bAraTOB0J4auuUtT_NPjraLY,2443
75
- telegrinder/modules.py,sha256=KwMYS1JNZRl80GwPDUrqh79JR1o4LWbdtOZgsjOXwmk,7513
72
+ telegrinder/client/__init__.py,sha256=ZiS1Wb_l_kv3FHzEEi1oXtFLwlA_HXmWOzeN0xA3E7Y,104
73
+ telegrinder/client/abc.py,sha256=OxsTX_PLYBEeFT9zpidFUzAbQL9BM7rQqru7zdn5DiQ,1611
74
+ telegrinder/client/aiohttp.py,sha256=vGJDAttRVasDZJn39KgUFFZ0nowf7iXTRKcFTO85vwQ,4163
75
+ telegrinder/model.py,sha256=VEM7meEQ8O7Gdt1cBGLjQxJODPqE4Q7lppeYWVchXYA,4380
76
+ telegrinder/modules.py,sha256=YTckkjISMRIZG-n4g3pCy-4uFoaZ3wM25kzQPxz8Kr0,7985
76
77
  telegrinder/msgspec_json.py,sha256=aWio-5B0pPIEyARFCtHfSAWBDZoWdwRAaijxxGCeRL0,349
77
- telegrinder/msgspec_utils.py,sha256=ic39xr1LG7IbaKmF6QJDPbxcYrVVuqEVWfgJp3_XgR0,6168
78
+ telegrinder/msgspec_utils.py,sha256=XZGJX48htXIKDquhCizrCb7jPYyt8GxCxb_uYx5Ai-o,6715
78
79
  telegrinder/node/__init__.py,sha256=01XTe8GPUBp5LXayDshihTxre7ejf99NYte20d08JLM,706
79
80
  telegrinder/node/attachment.py,sha256=vMnD2tWQQQ6PFuXEIq2ZdL91xcBxiwlAkMkqJqseLlk,2587
80
81
  telegrinder/node/base.py,sha256=iszAnP2pD3REDpUfufbVyJmg0rkXt2-ByeG6LgmS7Zc,2221
@@ -88,39 +89,39 @@ telegrinder/node/tools/__init__.py,sha256=TI_o7MbS4DUOSkNNgJGLocXfRybPFv2WOhBty0
88
89
  telegrinder/node/tools/generator.py,sha256=bc3kJSvS2TdIcBXkEbI4tpfhnvVe16m9ba5-WcIPy0c,1025
89
90
  telegrinder/node/update.py,sha256=QD-m9soBgsP3voTbhaErWdE1FciwYyJCIFNDYf_zra0,253
90
91
  telegrinder/rules.py,sha256=BFB8RFwKKxqs9HFfo_p0RfulQNonPZAX8cHpmnG7qCU,39
91
- telegrinder/tools/__init__.py,sha256=mn70EbB-tXw9psPzt5J5t_8wc7HdSIblsNpG8mwKCxk,3493
92
- telegrinder/tools/buttons.py,sha256=BOTCGtp0pugRquMDkroJ-lw1GoNL2jtbE_5CqmxZRU0,1807
93
- telegrinder/tools/error_handler/__init__.py,sha256=iW1EDWLy3HOoRinEpxydg9qeFmg2i5CphZ1S6QyakpY,155
94
- telegrinder/tools/error_handler/abc.py,sha256=HaKgC-WWHe-6WoY-ATz-sGh536qeO48EGEzsrmVOjt4,764
95
- telegrinder/tools/error_handler/error_handler.py,sha256=H-sfsZ-TsGokBSMrGTE-r1N3-xnGuKOJQqh5sRFgcmk,5423
92
+ telegrinder/tools/__init__.py,sha256=B5tUzg6doV2Qst7XFT1aw6tt5vX7YRrkcWXSIesDmuA,2728
93
+ telegrinder/tools/buttons.py,sha256=BmhmLLT6XCa7FbevWEUxgz0nibHDTamMPogBA0eRBY0,2490
94
+ telegrinder/tools/error_handler/__init__.py,sha256=WmYWZCNhhSk32j4lIOltEwzoYUx086TGTbOF5h3Ps7s,207
95
+ telegrinder/tools/error_handler/abc.py,sha256=1w-X7dncSyO5ouv6r_LAnywFRGYz7SgA79eNfTqMG3M,881
96
+ telegrinder/tools/error_handler/error.py,sha256=jVp3J4pMkkL20QHvDtlid9hKtAc66jZIcpsecB3-f98,188
97
+ telegrinder/tools/error_handler/error_handler.py,sha256=vu32XqmUwcWbSl3UlF1Iv59SI-afSY5UeeDVrRCuAiU,5993
96
98
  telegrinder/tools/formatting/__init__.py,sha256=1tFuJjMpDphCIOR4uXQhptyLHuAZ26mYSFx_BQwL5Lo,1459
97
99
  telegrinder/tools/formatting/html.py,sha256=wWSOT6_p-qaELYfHcMXnyttZG1miKOrapJDRPhZQAoM,8477
98
100
  telegrinder/tools/formatting/links.py,sha256=yPFdeazdp_yoblDR9GEP5hM9B3myb1Pa1v4ouJRYIQI,852
99
101
  telegrinder/tools/formatting/spec_html_formats.py,sha256=hgu-aD9fLYw-IzS7ZWab5H8BBhmIwtQgHgMZ5kgndaA,2311
100
102
  telegrinder/tools/global_context/__init__.py,sha256=QcNZpVTS-ZsPGdF4BQ10wnrfr1fZ3jX9aI-6It0nQxE,282
101
103
  telegrinder/tools/global_context/abc.py,sha256=twwAmbTk49KGl_POImr4yj6POr-zdx8mz74McuphZH0,1644
102
- telegrinder/tools/global_context/global_context.py,sha256=qj502fJ4ySW7oKH1vq_BTVz2hPDd0vXyjxNS2iq2jRc,14071
104
+ telegrinder/tools/global_context/global_context.py,sha256=wA22ouq9FmIFnJa1Bwf0GUxsiy1Cn7E8rQOrXyvbWF4,13860
103
105
  telegrinder/tools/global_context/telegrinder_ctx.py,sha256=g4iXYlK2IEi2sbJz1MqfBIDBrqF_4vznddjOUSEW8f8,651
104
106
  telegrinder/tools/i18n/__init__.py,sha256=CLUoiCJzOZzF-dqDIHZ5Fc8QUa38cYhIG4WF-ctPLfE,288
105
107
  telegrinder/tools/i18n/base.py,sha256=sJwgw6lobMIQEKIC4QH5O4sPKZADHAcxltZJvTtvaFE,637
106
108
  telegrinder/tools/i18n/middleware/__init__.py,sha256=y5ZX6s3fOix_Yn98UNO8VqQ7ihJbQ_e5Uz01RgL7pHg,82
107
109
  telegrinder/tools/i18n/middleware/base.py,sha256=Gc0G4ix4xlYCcUzO4SHH1L-1h3c3vmudvNuxeuwZDSE,685
108
110
  telegrinder/tools/i18n/simple.py,sha256=vgkrleAQiYKcE9-2jn0QLvgr09xEXUsnpmygizt77bA,1619
109
- telegrinder/tools/inline_query.py,sha256=lMdBAs9vkZSt78OOGNd6XptGpIsRIE0_Qat238CsBq0,23601
110
111
  telegrinder/tools/kb_set/__init__.py,sha256=k1KCQTnvEgJ2y4KlghhJWOh5rccwg_27cs8264NtMmk,156
111
112
  telegrinder/tools/kb_set/base.py,sha256=mbZs-ViUErfSibzyN064IqZp76LBJPg3NB4D9v4VFtg,243
112
- telegrinder/tools/kb_set/yaml.py,sha256=gQZ9Ju0b8DAUrJKPehQDAL1KDszb0NiDzLsF1tT-H58,2022
113
- telegrinder/tools/keyboard.py,sha256=Js4CXzHmLX_TRVawuz1lIRFNGdbG2fxh8L6t4OLkWxY,3824
113
+ telegrinder/tools/kb_set/yaml.py,sha256=rDoVkdfxp3gz-pS82nB1LDQU8cyckErwMee4nCXHunI,2027
114
+ telegrinder/tools/keyboard.py,sha256=8XO57TX8m7Qr_bEQlXF1IgsCioEy9qzMGYJtXcI5jvg,3748
114
115
  telegrinder/tools/loop_wrapper/__init__.py,sha256=os6kfzNEpGa7EHBbwFpym-iEnQvJGokEyHtyuVIOtks,143
115
116
  telegrinder/tools/loop_wrapper/abc.py,sha256=T1UnAogzsoSv46s1YBLL_g0vnqfu6NAbxGEQ018WDwE,405
116
117
  telegrinder/tools/loop_wrapper/loop_wrapper.py,sha256=ZEwuqqEz-r5BehCRG-E5K1lg2i4ODyyhOh0iKFT8GDw,4306
117
- telegrinder/tools/magic.py,sha256=roaB5fSymJMXMPMgVWbYjwpK23tDYF8HV_XXL_jxv7Q,1802
118
+ telegrinder/tools/magic.py,sha256=TUHl-tsDWMLZSDykk8ezOYPifRqGg0wqje6XxCUMo0U,1837
118
119
  telegrinder/tools/parse_mode.py,sha256=JyQ-x9YAMPLhIIiUX01acyKkpWgs5TBA07W-iUyPHpE,92
119
120
  telegrinder/types/__init__.py,sha256=pvPKWDXq9PBiIOCW8dFcJMqgr1kAqodPhwT-u8I4kug,78
120
- telegrinder/types/enums.py,sha256=Lnxc9fAT8de5bN1m9rsvxsldWw_O7X7Rexxtdn39zxQ,18015
121
- telegrinder/types/methods.py,sha256=7ErHlq2AraUZtHZWH95TmpfTW34C4fvZdegEmkAVnCQ,183757
122
- telegrinder/types/objects.py,sha256=tNWJ1ifPL8IuZHpNeOyNLzyI3GSDu0kWzMAi3ZI-81g,203259
123
- telegrinder-0.1.dev158.dist-info/LICENSE,sha256=J9ngGsqHCNNjpm3xYPT7EnlzsnjhfqNXej5mJFjM6lw,1094
124
- telegrinder-0.1.dev158.dist-info/METADATA,sha256=7cKd1GWAYL9GJniKdtmt7VHoaiHn3gS9imZ32dSWefc,2760
125
- telegrinder-0.1.dev158.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
126
- telegrinder-0.1.dev158.dist-info/RECORD,,
121
+ telegrinder/types/enums.py,sha256=lahMwaLRB8Y2KTqRNyHr5veQ4KgPMuZmDQ_F0Th1LlA,18127
122
+ telegrinder/types/methods.py,sha256=2ezfJ6iQHNcb3qta_GkjTqRXbROIlweL-wr1C5F_DlA,180182
123
+ telegrinder/types/objects.py,sha256=YA2lq0x3RFOxpGOGfs8DlU-ESxtBclNmE-l1Ryi15so,205771
124
+ telegrinder-0.1.dev160.dist-info/LICENSE,sha256=J9ngGsqHCNNjpm3xYPT7EnlzsnjhfqNXej5mJFjM6lw,1094
125
+ telegrinder-0.1.dev160.dist-info/METADATA,sha256=S3z-GN6tzKtNnnUZ-MpaVop7NG3ZSH5Dt14eWZwfEKU,2892
126
+ telegrinder-0.1.dev160.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
127
+ telegrinder-0.1.dev160.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.7.0
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any