telegrinder 0.1.dev170__py3-none-any.whl → 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of telegrinder might be problematic. Click here for more details.
- telegrinder/__init__.py +2 -2
- telegrinder/api/__init__.py +1 -2
- telegrinder/api/api.py +15 -6
- telegrinder/api/error.py +2 -1
- telegrinder/api/token.py +36 -0
- telegrinder/bot/__init__.py +12 -6
- telegrinder/bot/bot.py +18 -6
- telegrinder/bot/cute_types/__init__.py +7 -7
- telegrinder/bot/cute_types/base.py +122 -20
- telegrinder/bot/cute_types/callback_query.py +10 -6
- telegrinder/bot/cute_types/chat_join_request.py +4 -5
- telegrinder/bot/cute_types/chat_member_updated.py +4 -6
- telegrinder/bot/cute_types/inline_query.py +3 -4
- telegrinder/bot/cute_types/message.py +32 -21
- telegrinder/bot/cute_types/update.py +51 -4
- telegrinder/bot/cute_types/utils.py +3 -466
- telegrinder/bot/dispatch/__init__.py +10 -11
- telegrinder/bot/dispatch/abc.py +8 -5
- telegrinder/bot/dispatch/context.py +17 -8
- telegrinder/bot/dispatch/dispatch.py +71 -48
- telegrinder/bot/dispatch/handler/__init__.py +3 -3
- telegrinder/bot/dispatch/handler/abc.py +4 -4
- telegrinder/bot/dispatch/handler/func.py +46 -22
- telegrinder/bot/dispatch/handler/message_reply.py +6 -7
- telegrinder/bot/dispatch/middleware/__init__.py +1 -1
- telegrinder/bot/dispatch/middleware/abc.py +2 -2
- telegrinder/bot/dispatch/process.py +38 -19
- telegrinder/bot/dispatch/return_manager/__init__.py +4 -4
- telegrinder/bot/dispatch/return_manager/abc.py +3 -3
- telegrinder/bot/dispatch/return_manager/callback_query.py +1 -2
- telegrinder/bot/dispatch/return_manager/inline_query.py +1 -2
- telegrinder/bot/dispatch/return_manager/message.py +1 -2
- telegrinder/bot/dispatch/view/__init__.py +8 -8
- telegrinder/bot/dispatch/view/abc.py +18 -16
- telegrinder/bot/dispatch/view/box.py +75 -64
- telegrinder/bot/dispatch/view/callback_query.py +1 -2
- telegrinder/bot/dispatch/view/chat_join_request.py +1 -2
- telegrinder/bot/dispatch/view/chat_member.py +16 -2
- telegrinder/bot/dispatch/view/inline_query.py +1 -2
- telegrinder/bot/dispatch/view/message.py +12 -5
- telegrinder/bot/dispatch/view/raw.py +9 -8
- telegrinder/bot/dispatch/waiter_machine/__init__.py +3 -3
- telegrinder/bot/dispatch/waiter_machine/machine.py +12 -8
- telegrinder/bot/dispatch/waiter_machine/middleware.py +1 -1
- telegrinder/bot/dispatch/waiter_machine/short_state.py +4 -3
- telegrinder/bot/polling/abc.py +1 -1
- telegrinder/bot/polling/polling.py +6 -6
- telegrinder/bot/rules/__init__.py +20 -20
- telegrinder/bot/rules/abc.py +57 -43
- telegrinder/bot/rules/adapter/__init__.py +5 -5
- telegrinder/bot/rules/adapter/abc.py +6 -3
- telegrinder/bot/rules/adapter/errors.py +2 -1
- telegrinder/bot/rules/adapter/event.py +28 -13
- telegrinder/bot/rules/adapter/node.py +28 -22
- telegrinder/bot/rules/adapter/raw_update.py +13 -5
- telegrinder/bot/rules/callback_data.py +4 -4
- telegrinder/bot/rules/chat_join.py +4 -4
- telegrinder/bot/rules/command.py +5 -7
- telegrinder/bot/rules/func.py +2 -2
- telegrinder/bot/rules/fuzzy.py +1 -1
- telegrinder/bot/rules/inline.py +3 -3
- telegrinder/bot/rules/integer.py +1 -2
- telegrinder/bot/rules/markup.py +5 -3
- telegrinder/bot/rules/message_entities.py +2 -2
- telegrinder/bot/rules/node.py +2 -2
- telegrinder/bot/rules/regex.py +1 -1
- telegrinder/bot/rules/rule_enum.py +1 -1
- telegrinder/bot/rules/text.py +1 -2
- telegrinder/bot/rules/update.py +1 -2
- telegrinder/bot/scenario/abc.py +2 -2
- telegrinder/bot/scenario/checkbox.py +3 -4
- telegrinder/bot/scenario/choice.py +1 -2
- telegrinder/model.py +89 -45
- telegrinder/modules.py +3 -3
- telegrinder/msgspec_utils.py +85 -57
- telegrinder/node/__init__.py +17 -10
- telegrinder/node/attachment.py +19 -16
- telegrinder/node/base.py +46 -22
- telegrinder/node/callback_query.py +5 -9
- telegrinder/node/command.py +6 -2
- telegrinder/node/composer.py +102 -77
- telegrinder/node/container.py +3 -3
- telegrinder/node/event.py +68 -0
- telegrinder/node/me.py +3 -0
- telegrinder/node/message.py +6 -10
- telegrinder/node/polymorphic.py +15 -10
- telegrinder/node/rule.py +20 -6
- telegrinder/node/scope.py +9 -1
- telegrinder/node/source.py +21 -11
- telegrinder/node/text.py +4 -4
- telegrinder/node/update.py +7 -4
- telegrinder/py.typed +0 -0
- telegrinder/rules.py +59 -0
- telegrinder/tools/__init__.py +2 -2
- telegrinder/tools/buttons.py +5 -10
- telegrinder/tools/error_handler/abc.py +2 -2
- telegrinder/tools/error_handler/error.py +2 -0
- telegrinder/tools/error_handler/error_handler.py +6 -6
- telegrinder/tools/formatting/spec_html_formats.py +10 -10
- telegrinder/tools/global_context/__init__.py +2 -2
- telegrinder/tools/global_context/global_context.py +3 -3
- telegrinder/tools/global_context/telegrinder_ctx.py +4 -4
- telegrinder/tools/keyboard.py +3 -3
- telegrinder/tools/loop_wrapper/loop_wrapper.py +47 -13
- telegrinder/tools/magic.py +96 -18
- telegrinder/types/__init__.py +1 -0
- telegrinder/types/enums.py +2 -0
- telegrinder/types/methods.py +91 -15
- telegrinder/types/objects.py +49 -24
- telegrinder/verification_utils.py +1 -3
- {telegrinder-0.1.dev170.dist-info → telegrinder-0.2.0.dist-info}/METADATA +2 -2
- telegrinder-0.2.0.dist-info/RECORD +145 -0
- telegrinder/api/abc.py +0 -73
- telegrinder-0.1.dev170.dist-info/RECORD +0 -143
- {telegrinder-0.1.dev170.dist-info → telegrinder-0.2.0.dist-info}/LICENSE +0 -0
- {telegrinder-0.1.dev170.dist-info → telegrinder-0.2.0.dist-info}/WHEEL +0 -0
telegrinder/api/abc.py
DELETED
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import pathlib
|
|
2
|
-
import typing
|
|
3
|
-
from abc import ABC, abstractmethod
|
|
4
|
-
|
|
5
|
-
import msgspec
|
|
6
|
-
from envparse import env
|
|
7
|
-
from fntypes.result import Result
|
|
8
|
-
|
|
9
|
-
from telegrinder.api.error import APIError
|
|
10
|
-
from telegrinder.client import ABCClient
|
|
11
|
-
|
|
12
|
-
from .error import InvalidTokenError
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class Token(str):
|
|
16
|
-
def __new__(cls, token: str) -> typing.Self:
|
|
17
|
-
if token.count(":") != 1 or not token.split(":")[0].isdigit():
|
|
18
|
-
raise InvalidTokenError("Invalid token, it should look like this '123:ABC'.")
|
|
19
|
-
return super().__new__(cls, token)
|
|
20
|
-
|
|
21
|
-
def __repr__(self) -> str:
|
|
22
|
-
return f"<Token: {self.bot_id}:{''.join(self.split(':')[-1])[:6]}...>"
|
|
23
|
-
|
|
24
|
-
@classmethod
|
|
25
|
-
def from_env(
|
|
26
|
-
cls,
|
|
27
|
-
var_name: str = "BOT_TOKEN",
|
|
28
|
-
*,
|
|
29
|
-
is_read: bool = False,
|
|
30
|
-
path_to_envfile: str | pathlib.Path | None = None,
|
|
31
|
-
) -> typing.Self:
|
|
32
|
-
if not is_read:
|
|
33
|
-
env.read_envfile(path_to_envfile)
|
|
34
|
-
return cls(env.str(var_name))
|
|
35
|
-
|
|
36
|
-
@property
|
|
37
|
-
def bot_id(self) -> int:
|
|
38
|
-
return int(self.split(":")[0])
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
class ABCAPI(ABC):
|
|
42
|
-
http: ABCClient
|
|
43
|
-
|
|
44
|
-
@abstractmethod
|
|
45
|
-
async def request(
|
|
46
|
-
self,
|
|
47
|
-
method: str,
|
|
48
|
-
data: dict[str, typing.Any] | None = None,
|
|
49
|
-
files: dict[str, tuple[str, bytes]] | None = None,
|
|
50
|
-
) -> Result[list[typing.Any] | dict[str, typing.Any] | bool, APIError]:
|
|
51
|
-
pass
|
|
52
|
-
|
|
53
|
-
@abstractmethod
|
|
54
|
-
async def request_raw(
|
|
55
|
-
self,
|
|
56
|
-
method: str,
|
|
57
|
-
data: dict[str, typing.Any] | None = None,
|
|
58
|
-
files: dict[str, tuple[str, bytes]] | None = None,
|
|
59
|
-
) -> Result[msgspec.Raw, APIError]:
|
|
60
|
-
pass
|
|
61
|
-
|
|
62
|
-
@property
|
|
63
|
-
@abstractmethod
|
|
64
|
-
def request_url(self) -> str:
|
|
65
|
-
pass
|
|
66
|
-
|
|
67
|
-
@property
|
|
68
|
-
@abstractmethod
|
|
69
|
-
def id(self) -> int:
|
|
70
|
-
pass
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
__all__ = ("ABCAPI", "Token")
|
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
telegrinder/__init__.py,sha256=_oJyGLb0znFMchGTHQtqeBYlvgvTb9FE9QxnyJvzuTQ,4230
|
|
2
|
-
telegrinder/api/__init__.py,sha256=pIDtnsL0NwT5PgVm43Gkp-ByOqDsqnD-oFDiC9tcPT4,246
|
|
3
|
-
telegrinder/api/abc.py,sha256=IPPGed6dSDvK5lMQ2eABHD_aiXVC2geY04u7ZFlGiCI,1799
|
|
4
|
-
telegrinder/api/api.py,sha256=3vq9o0s2y3kCFjH-PcIcAMY071Cs_A3BSazgTzum39c,2473
|
|
5
|
-
telegrinder/api/error.py,sha256=NOlVjQ6AsgCldCgeHZ2zFSA4DXolP6ADBPA16xFEwJU,417
|
|
6
|
-
telegrinder/api/response.py,sha256=d7Oxd5kOdbZNJiALkzkecHl8Y3K_BzCmsRq2Sn3otqA,491
|
|
7
|
-
telegrinder/bot/__init__.py,sha256=bGXs_-fHjyeZ736Jyy9GN1J0W4ar4Kl58IBkybj5k30,1918
|
|
8
|
-
telegrinder/bot/bot.py,sha256=FZFyi-CLEcJYlOz5BbL5Ev6dZQ5VhVqxh1nYburXplQ,2464
|
|
9
|
-
telegrinder/bot/cute_types/__init__.py,sha256=XDcZJMKDFYJExvaNSm3B-bMQ2_wRETALz7-OWAytBC0,457
|
|
10
|
-
telegrinder/bot/cute_types/base.py,sha256=IemxYRLA6s046BM_J4Qvu07Oo3_-TslFUnVzgJPMpnA,4475
|
|
11
|
-
telegrinder/bot/cute_types/callback_query.py,sha256=U2t9918soc-voh-r6Tkiqyaggx9FY3zeBko6vkKbICY,20640
|
|
12
|
-
telegrinder/bot/cute_types/chat_join_request.py,sha256=JJFYgaofPZeegBC-gAWUaClzzb7yOhNN_DEd3Y4A8oU,2264
|
|
13
|
-
telegrinder/bot/cute_types/chat_member_updated.py,sha256=bxsuBZxADVuN-DBj_nrRmWSbekdGZZCR7ZiTPJt-yt8,10938
|
|
14
|
-
telegrinder/bot/cute_types/inline_query.py,sha256=wd_zhUQXNi1xOVnDBleD4GZXgH63g5STFXUJaW0YE0Q,2474
|
|
15
|
-
telegrinder/bot/cute_types/message.py,sha256=gvTfMs6J1yTgoKPaafiy-bkEB2d5BnPx2E8R3sQQYbo,149711
|
|
16
|
-
telegrinder/bot/cute_types/update.py,sha256=scz99PDbfsClEIoZbHTBbx-XnxnHAewK2kksT1IxD9U,674
|
|
17
|
-
telegrinder/bot/cute_types/utils.py,sha256=9y3E3RfoRuLcqlFYqem5Al0aMATDA0Vd5Azgc5yM9vA,17048
|
|
18
|
-
telegrinder/bot/dispatch/__init__.py,sha256=TN2vOJrZeSeO8WV7YD6WpE-eeJIKGqQNVD3dmQrfYsg,1468
|
|
19
|
-
telegrinder/bot/dispatch/abc.py,sha256=jl2ut8qfsax8OIMGxXo4roNjQvwTStG1X1Bw5f07c8U,588
|
|
20
|
-
telegrinder/bot/dispatch/context.py,sha256=sfLaLuv4nj38ECky9EQAlQ-CreMnfZnDnz5Zl6U3Z90,2381
|
|
21
|
-
telegrinder/bot/dispatch/dispatch.py,sha256=0IfpgOZtCt7PHcK8WjmZ0y9gcXKBS4rpcQ1bzMbcsQg,5247
|
|
22
|
-
telegrinder/bot/dispatch/handler/__init__.py,sha256=mzchbArrm0eoTEeVKHYrtJX4WSfW5t6T4xDU3-mtYaA,169
|
|
23
|
-
telegrinder/bot/dispatch/handler/abc.py,sha256=ry5gMUxB6buiDksAFiuWM-LcIAg5S8rJZlW_0PWpVJA,570
|
|
24
|
-
telegrinder/bot/dispatch/handler/func.py,sha256=JyW47LcbRvsUIp1qot4DHN3okdXgaYw_Pe35Fp4Ssqg,3728
|
|
25
|
-
telegrinder/bot/dispatch/handler/message_reply.py,sha256=2tKJ50_MA8ZlrIOHOcxjXnfItRjp3w_bPZcqq0JbEmU,1935
|
|
26
|
-
telegrinder/bot/dispatch/middleware/__init__.py,sha256=qDuTt2ZZKX9UMjPdw5xaaNZdMI-i3P4Px2T8qbYCMJw,61
|
|
27
|
-
telegrinder/bot/dispatch/middleware/abc.py,sha256=uguHsUc1MR1BNFBIqowWpOvnnI7Mss_J_KEMY-B80uw,433
|
|
28
|
-
telegrinder/bot/dispatch/process.py,sha256=VBuMJH1wSjMXdc8lsvCUiiVCU_Fk0Seq5qXUQZeOgXg,3357
|
|
29
|
-
telegrinder/bot/dispatch/return_manager/__init__.py,sha256=M9RmSqs5U_JixX_1FT1byMAxdfcC3UGvZAhmmebFDN4,446
|
|
30
|
-
telegrinder/bot/dispatch/return_manager/abc.py,sha256=f5EETlFqSJx37gwby1_FrRQjDLxsD3pDoy8kWrvpSQ8,3562
|
|
31
|
-
telegrinder/bot/dispatch/return_manager/callback_query.py,sha256=FvAmCHZQ59fA7tJdW4lWsG0WdkJJApGNHYKwC-_or_k,652
|
|
32
|
-
telegrinder/bot/dispatch/return_manager/inline_query.py,sha256=lKmg1__LBgFTrWjS2Ckp7LDWVKr8PDfB_awMyh3PnFg,475
|
|
33
|
-
telegrinder/bot/dispatch/return_manager/message.py,sha256=ZrCrvq8wNmz8TTykoVMzneKk11cIqkCFZIOynZ5PjAQ,1160
|
|
34
|
-
telegrinder/bot/dispatch/view/__init__.py,sha256=x8qPwRWosGNTk89tvyiWZhHKvVK2IqFI87D7YTrRKbk,569
|
|
35
|
-
telegrinder/bot/dispatch/view/abc.py,sha256=6wPPDEukwBCj80OQtYhTOxoxwUbrlj-gN1AOkZqCnzE,6659
|
|
36
|
-
telegrinder/bot/dispatch/view/box.py,sha256=y_tIQRgvjhc3aunzA7BGQIVlwwC9jpByk2-jjjV9sKw,4090
|
|
37
|
-
telegrinder/bot/dispatch/view/callback_query.py,sha256=ALQm-cUFDQggZqwGVOEVodvpTcYKXCebwYDbLcZ36cE,560
|
|
38
|
-
telegrinder/bot/dispatch/view/chat_join_request.py,sha256=y1wQMrPSiqxDHQm7TqdOA-ecAP3rnocYTzQxa7-7vws,447
|
|
39
|
-
telegrinder/bot/dispatch/view/chat_member.py,sha256=VGXp0F_y4b1b3kYNO5Y4QLeoM6pt_DzA1sNysBdObAY,715
|
|
40
|
-
telegrinder/bot/dispatch/view/inline_query.py,sha256=hRwrgfhgS5YF0E6eUrR8FuWVHUMlnA758kG7V049lkE,531
|
|
41
|
-
telegrinder/bot/dispatch/view/message.py,sha256=ChXx0ubRXYZw_InPZeoR9cFjo6GeVI-Z4MKw68sZ2gU,1110
|
|
42
|
-
telegrinder/bot/dispatch/view/raw.py,sha256=lOO_vwMqAZ0fFUGLBQGvFgvJdLQgWgAaN1pM-fCSeq8,3366
|
|
43
|
-
telegrinder/bot/dispatch/waiter_machine/__init__.py,sha256=6Rt8xVhL7c-k_kNEQ7GX52DJEwVo_1Y4VacqA7rUDyc,246
|
|
44
|
-
telegrinder/bot/dispatch/waiter_machine/machine.py,sha256=OAyvl2a0jOdxQayb2gcagCw_CzrebaPnxxV-MyfzQR8,5850
|
|
45
|
-
telegrinder/bot/dispatch/waiter_machine/middleware.py,sha256=U_umumt1MZmEh_uCMNk2bbxe3mF6AiRDWRsNvUDC-7Q,3517
|
|
46
|
-
telegrinder/bot/dispatch/waiter_machine/short_state.py,sha256=RNkca2NOTi99Z9EJ3Jf411g2dmPTKcYoCwPdNUAjZVw,2041
|
|
47
|
-
telegrinder/bot/polling/__init__.py,sha256=OqfIFPS_V6UrCg-vCv9pkMFzTKdNbDP2faBfATs_TGg,94
|
|
48
|
-
telegrinder/bot/polling/abc.py,sha256=-5BpX55SJfDlEJWt15yOXWCizQRrgeY5oiA5eHkm1Nw,434
|
|
49
|
-
telegrinder/bot/polling/polling.py,sha256=YthuMej1eXipM2Yn_sF6dAdQGyKQmRN81MFIeLNo96M,4703
|
|
50
|
-
telegrinder/bot/rules/__init__.py,sha256=4gxjLyXueNa6-4RoQuK0wsV51GtnRsRp1WvnnC_9XRw,2352
|
|
51
|
-
telegrinder/bot/rules/abc.py,sha256=ymHiX_C3Rogn84UsVtxD81LKKEV5zQD1pv0hR263pGY,5906
|
|
52
|
-
telegrinder/bot/rules/adapter/__init__.py,sha256=r1U1mky2I5K9ZUiktGILtcGtHUU3LPIz2-G6hs9WWeg,300
|
|
53
|
-
telegrinder/bot/rules/adapter/abc.py,sha256=SXChAektvYOkGxIxjZrIn-BS4AttsWohqMF4zLPc9qM,567
|
|
54
|
-
telegrinder/bot/rules/adapter/errors.py,sha256=qrovMtrhsLfSAwfkh3tAi9ld5fl58SpYMKyju78LOcU,68
|
|
55
|
-
telegrinder/bot/rules/adapter/event.py,sha256=7ynxb4QnEzvZYIqFvGAPi5Yg_ZP1pEdgMQ7fWPLVd3Y,2243
|
|
56
|
-
telegrinder/bot/rules/adapter/node.py,sha256=zqa5oCgYBNeodk7hbLzwIdrzOJ9ZjnKDsrIH2re_v-k,1643
|
|
57
|
-
telegrinder/bot/rules/adapter/raw_update.py,sha256=K0bwq3Hh-hIs_xbEYDOgZHMS4r-Zvo3VKs1B3gkJLGA,752
|
|
58
|
-
telegrinder/bot/rules/callback_data.py,sha256=5ZcIapEmRNxX34s0Htese2nKpGxpH9rP25cfs6qPorM,5511
|
|
59
|
-
telegrinder/bot/rules/chat_join.py,sha256=xuyotgsGc_2_jQ5GFp-_3i4bs3ofHDaXoRbWn_Qu-QY,1484
|
|
60
|
-
telegrinder/bot/rules/command.py,sha256=vY7gZxLBkB5_dWC4LezCcsLMUUP5faEJLHCPKBSIucg,3889
|
|
61
|
-
telegrinder/bot/rules/enum_text.py,sha256=YJ6S2fAQts8zCjCgoL7uUGWlnPOH59rjvA7Si2hKyR4,944
|
|
62
|
-
telegrinder/bot/rules/func.py,sha256=BBtJo2L3wdINP8DJ_NvXdBqbCmW2EM718icXeqEyETc,753
|
|
63
|
-
telegrinder/bot/rules/fuzzy.py,sha256=DwDZTQr3TAS7tk4V_yqu9R4Cw-T4ybx-CRj04O_11bw,668
|
|
64
|
-
telegrinder/bot/rules/inline.py,sha256=56I-TAFbha99HTgM9HXNPpL0KWTwTqhvDFon2cNl1vA,1981
|
|
65
|
-
telegrinder/bot/rules/integer.py,sha256=JCQgUIqsMVa41HZdmo0l4wvwwWwBoYrD8_ix7EiPlU4,480
|
|
66
|
-
telegrinder/bot/rules/is_from.py,sha256=x7vCbLzqFkFE0GxPgy_WA_mRFa_ogSNTzyJ6PK3Qx0o,3382
|
|
67
|
-
telegrinder/bot/rules/markup.py,sha256=KB7KbQylnX2RB0eY1VfTfoTxe8nLcp4GdPPtXSZ74Kw,1072
|
|
68
|
-
telegrinder/bot/rules/mention.py,sha256=xteWbtSjQN3KOXpB8RjuVYu18bGrLxNtVFg6oR-UkxU,435
|
|
69
|
-
telegrinder/bot/rules/message.py,sha256=VFfcEmNrw5sW4EYpk2XgLkSE5-rRr7sWC2dFE26Q3cI,442
|
|
70
|
-
telegrinder/bot/rules/message_entities.py,sha256=QyzpQ6avhI6WniafDHtGZ5PVwyHn6JGffbhU4uA5gE8,1100
|
|
71
|
-
telegrinder/bot/rules/node.py,sha256=XUGpAtDMZvO-ZUNkwKpVKfi52uOO4E_vjE4aFla6vyw,871
|
|
72
|
-
telegrinder/bot/rules/regex.py,sha256=47YiblXXUdkKjjmDk8tR_GRpzuSAvtRTSecD6TEXmEk,1145
|
|
73
|
-
telegrinder/bot/rules/rule_enum.py,sha256=Fl9Smuatr9VEg9_Xud0ohcemqf8NhXIqMoPgGsogNK8,2101
|
|
74
|
-
telegrinder/bot/rules/start.py,sha256=3ciA28m9JNcM-1H2YnLrUNyS1Y4UsyYPR5MClrpdAdA,1154
|
|
75
|
-
telegrinder/bot/rules/text.py,sha256=kmiL-mG_T4eoJXbYyCacf6ZvvKmKgNrEaIo2RTMBG0E,1031
|
|
76
|
-
telegrinder/bot/rules/update.py,sha256=T-sJGnpWkAZ_uxAdrRqWi33FKNlUA3wV_-vp87x0lsI,465
|
|
77
|
-
telegrinder/bot/scenario/__init__.py,sha256=nnPjdxdvjoEYYMRUEfWvIhZStiY1C984x1azdRRP9II,136
|
|
78
|
-
telegrinder/bot/scenario/abc.py,sha256=3AZYRjZlkbDtyFbsKdZ6BefzWYlJ0DOrGwh8jI3nzv4,474
|
|
79
|
-
telegrinder/bot/scenario/checkbox.py,sha256=ULsdt40AXqqiTnN5iXiiw5TJ7j4IFoQOg92TF3zg_XA,4152
|
|
80
|
-
telegrinder/bot/scenario/choice.py,sha256=YAWY2mEqon9cO93Kc25emR9U4bPIKHFg8APIJR3APZo,1441
|
|
81
|
-
telegrinder/client/__init__.py,sha256=ZiS1Wb_l_kv3FHzEEi1oXtFLwlA_HXmWOzeN0xA3E7Y,104
|
|
82
|
-
telegrinder/client/abc.py,sha256=OxsTX_PLYBEeFT9zpidFUzAbQL9BM7rQqru7zdn5DiQ,1611
|
|
83
|
-
telegrinder/client/aiohttp.py,sha256=AqmuHd6Z3zy96YBe7xIMC4U8Hi9SA7j-0EI7xYE3ZCU,4085
|
|
84
|
-
telegrinder/model.py,sha256=dnT2UvR_K3YfUlkBqzZTgVnSCrq11vEnGNRRnffGS6k,5720
|
|
85
|
-
telegrinder/modules.py,sha256=SdeGCiptyTwFaUqceB7AXfM55fmvyIFxkbb918S_0Xo,7967
|
|
86
|
-
telegrinder/msgspec_json.py,sha256=phfyhUvYYZUGEcI6RAyRx9lnARPK_Fqtw3Q0MEJnuUk,226
|
|
87
|
-
telegrinder/msgspec_utils.py,sha256=eq9-xCw4BekDhsOZoY0ICQXqGc1HSfIL98rPIUsjfdk,10143
|
|
88
|
-
telegrinder/node/__init__.py,sha256=ldO81KDzhSETa-ikU7GwQgp1lHd0pWuJyrgbzBrdWTg,1185
|
|
89
|
-
telegrinder/node/attachment.py,sha256=XKoIhjezUIooeTrR1RVSvPJVlPdDdszuRb-jdK9Ieu0,2965
|
|
90
|
-
telegrinder/node/base.py,sha256=eV9pPSni8SOWbb5bxBpkCEVUVw52EoXVjXNOrYURZQY,2378
|
|
91
|
-
telegrinder/node/callback_query.py,sha256=p_lu3irNmgXMA9nnYCsqHcrTGXzk-6yfLmbPdfQBlec,508
|
|
92
|
-
telegrinder/node/command.py,sha256=BWPHu7Dv4FzC_LqgbI_6a0TppFb_Mq4mYkdF3E5ddhk,774
|
|
93
|
-
telegrinder/node/composer.py,sha256=BFsFzA8XzLXmrHQNoEajAMEwge7bo6EPNI5_H0vwEMU,5425
|
|
94
|
-
telegrinder/node/container.py,sha256=arXgXw92nVJVvsxCYAljUwPGGbKqLcu0qcdILWt09X8,632
|
|
95
|
-
telegrinder/node/me.py,sha256=MFJbXPt53AIbPWJHbSbPd_pwHoUZ2V2weg_yQ3PGOcw,358
|
|
96
|
-
telegrinder/node/message.py,sha256=qaaj2nbsJzH3W5kKavUAKT5MF77vgEntJNN83Jejg5E,460
|
|
97
|
-
telegrinder/node/polymorphic.py,sha256=KS6XUzQ0h2LtngXqELy7QE2Y5mAPbSpY_SfsRz32Css,1539
|
|
98
|
-
telegrinder/node/rule.py,sha256=jQQ6NJwcSEWU1x6NWmYKjivCeCJPMtMT0x6UnwvZ0fw,1915
|
|
99
|
-
telegrinder/node/scope.py,sha256=AU2YSB2E3tf0rAdoa1AtbcpTCKguuprl6eulBsgUuxM,677
|
|
100
|
-
telegrinder/node/source.py,sha256=Vdzym7bkcPlo6yP7jSw4iVHFXmkevNqwJZl3PfZDEHU,1720
|
|
101
|
-
telegrinder/node/text.py,sha256=FYesQBT7he4DVkafsoMFCWcnEDETs4P-7X8zb6UMp4I,547
|
|
102
|
-
telegrinder/node/tools/__init__.py,sha256=iyjs82g3brYGzpPsUQaoK6_r7YuQhRkJ61YjjuPOx9E,67
|
|
103
|
-
telegrinder/node/tools/generator.py,sha256=xuhZ5-TwoctFLlDBdYvjOQxHTpqC4IAdnkzMViVSsUM,1046
|
|
104
|
-
telegrinder/node/update.py,sha256=QD-m9soBgsP3voTbhaErWdE1FciwYyJCIFNDYf_zra0,253
|
|
105
|
-
telegrinder/rules.py,sha256=BFB8RFwKKxqs9HFfo_p0RfulQNonPZAX8cHpmnG7qCU,39
|
|
106
|
-
telegrinder/tools/__init__.py,sha256=Ps-g1JlmOjzFJFvMuSPHNQRuKYjsDGhMVn-DjzDy1yM,2829
|
|
107
|
-
telegrinder/tools/buttons.py,sha256=lAzNa_uG-6rjLIhqwlL4IjulfzhY8ZjpsMXMphl3qUY,3033
|
|
108
|
-
telegrinder/tools/error_handler/__init__.py,sha256=WmYWZCNhhSk32j4lIOltEwzoYUx086TGTbOF5h3Ps7s,207
|
|
109
|
-
telegrinder/tools/error_handler/abc.py,sha256=w5t2sWa_xt9iy7pdphiFs1kgmsll7A7eaPbm3Yes8t0,888
|
|
110
|
-
telegrinder/tools/error_handler/error.py,sha256=3T2nbxL9vEXzZX2sxeUqpiEd5RPv-R1ZDT1Yjq9Fb4I,185
|
|
111
|
-
telegrinder/tools/error_handler/error_handler.py,sha256=NMY7XJnffF5AZiwaRoYHcDut-U29ztHIplpsPyPRrq4,6363
|
|
112
|
-
telegrinder/tools/formatting/__init__.py,sha256=1tFuJjMpDphCIOR4uXQhptyLHuAZ26mYSFx_BQwL5Lo,1459
|
|
113
|
-
telegrinder/tools/formatting/html.py,sha256=h8hyN6t6cJfMBjMf-XWZixVnweoAuLUIJ1xjg9JOJDw,8736
|
|
114
|
-
telegrinder/tools/formatting/links.py,sha256=dYJy2qPxa4YGHYqSSCTv-6hXz0Aa0AGuzsLXwbxPZ9A,1112
|
|
115
|
-
telegrinder/tools/formatting/spec_html_formats.py,sha256=CzgaXnckrvyWNMKRKzZtQ1hKk-1xYKnN_msdSxbm03I,2497
|
|
116
|
-
telegrinder/tools/global_context/__init__.py,sha256=QcNZpVTS-ZsPGdF4BQ10wnrfr1fZ3jX9aI-6It0nQxE,282
|
|
117
|
-
telegrinder/tools/global_context/abc.py,sha256=twwAmbTk49KGl_POImr4yj6POr-zdx8mz74McuphZH0,1644
|
|
118
|
-
telegrinder/tools/global_context/global_context.py,sha256=slWu69QC8pwMYVsWFiBKeci_10hVlB7trfakWXZvMIs,13645
|
|
119
|
-
telegrinder/tools/global_context/telegrinder_ctx.py,sha256=6vlUAtdDUTF_pbKByOBTwJm1Rst6m6LQnz59Lx1mV2g,647
|
|
120
|
-
telegrinder/tools/i18n/__init__.py,sha256=CLUoiCJzOZzF-dqDIHZ5Fc8QUa38cYhIG4WF-ctPLfE,288
|
|
121
|
-
telegrinder/tools/i18n/base.py,sha256=jxJVYiTplJaNeklkGiin-m7BkfZiac2fbVXTEdhNw6o,726
|
|
122
|
-
telegrinder/tools/i18n/middleware/__init__.py,sha256=y5ZX6s3fOix_Yn98UNO8VqQ7ihJbQ_e5Uz01RgL7pHg,82
|
|
123
|
-
telegrinder/tools/i18n/middleware/base.py,sha256=gGqcPxJLLC3f6XfV_0-drhr27TND40cL1Z5sNmC84lo,663
|
|
124
|
-
telegrinder/tools/i18n/simple.py,sha256=yiaGtEAaMkrzYV3O7esA2wi3A2n9YyndxKPKp8Fs834,1567
|
|
125
|
-
telegrinder/tools/kb_set/__init__.py,sha256=k1KCQTnvEgJ2y4KlghhJWOh5rccwg_27cs8264NtMmk,156
|
|
126
|
-
telegrinder/tools/kb_set/base.py,sha256=mbZs-ViUErfSibzyN064IqZp76LBJPg3NB4D9v4VFtg,243
|
|
127
|
-
telegrinder/tools/kb_set/yaml.py,sha256=glk27r0L9Y8ibaPmTHMAEJZw-ED-ehmSo_NdJNKkrNs,2007
|
|
128
|
-
telegrinder/tools/keyboard.py,sha256=fQXXp2kLr3p9eDkDqMcTnlsUU0UomIRECFwuzskb1ck,3649
|
|
129
|
-
telegrinder/tools/limited_dict.py,sha256=tb1WT4P3Oia5CsCBXTHzlFjrPnIgf9eHCkQ0zhAbEUg,1078
|
|
130
|
-
telegrinder/tools/loop_wrapper/__init__.py,sha256=ZQ5jmE1lOKnqJlMZ9k2OYmjvOEhOlHPijUWqZ4nHIgk,165
|
|
131
|
-
telegrinder/tools/loop_wrapper/abc.py,sha256=ET_Dp-kRz75Jo1fZB3qofUgEXN4FqlU0xH2diESKGCM,266
|
|
132
|
-
telegrinder/tools/loop_wrapper/loop_wrapper.py,sha256=xhcTrSfas2VkaqunvjALLYHeTKBhstYLmtxPadE80HA,5755
|
|
133
|
-
telegrinder/tools/magic.py,sha256=EUmaajQDjq79fsNW94n1fFAFTExGLjUf0PX8Ib6PKkI,2578
|
|
134
|
-
telegrinder/tools/parse_mode.py,sha256=JyQ-x9YAMPLhIIiUX01acyKkpWgs5TBA07W-iUyPHpE,92
|
|
135
|
-
telegrinder/types/__init__.py,sha256=zwqYH_BevwejjvnNmbslt42646_3YKsdEdW3cisd12c,6588
|
|
136
|
-
telegrinder/types/enums.py,sha256=26s3dYVRKwJX9cYBZIZ7taBfPVstgMMVT6Fu3Ymcj-A,18969
|
|
137
|
-
telegrinder/types/methods.py,sha256=THVMvc3SnV2gq-fcifNvWxgLjFbgonrgPSx_SFqRYrk,197590
|
|
138
|
-
telegrinder/types/objects.py,sha256=xY12TXJvrpAaonufVoc2oixv9d6cXZ42KsM5mrB0Ueo,243604
|
|
139
|
-
telegrinder/verification_utils.py,sha256=ZUgHsouZjs930D5rI_w7VGy0ub69vovwKXeKjqgrSNc,1028
|
|
140
|
-
telegrinder-0.1.dev170.dist-info/LICENSE,sha256=Q0tKgU8mPOCQAkc6m__BrNIpRge8mPBQJDd59s21NZo,1095
|
|
141
|
-
telegrinder-0.1.dev170.dist-info/METADATA,sha256=CBnrKsZSD2pP6K78floa4ZBs5CZ91ppJkn3GI-3bz9o,3013
|
|
142
|
-
telegrinder-0.1.dev170.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
143
|
-
telegrinder-0.1.dev170.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|