multibotkit 0.1.15__py3-none-any.whl → 0.1.17__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.
- multibotkit/helpers/telegram.py +61 -3
- multibotkit/schemas/telegram/outgoing.py +9 -0
- {multibotkit-0.1.15.dist-info → multibotkit-0.1.17.dist-info}/METADATA +1 -1
- {multibotkit-0.1.15.dist-info → multibotkit-0.1.17.dist-info}/RECORD +7 -7
- {multibotkit-0.1.15.dist-info → multibotkit-0.1.17.dist-info}/LICENSE +0 -0
- {multibotkit-0.1.15.dist-info → multibotkit-0.1.17.dist-info}/WHEEL +0 -0
- {multibotkit-0.1.15.dist-info → multibotkit-0.1.17.dist-info}/top_level.txt +0 -0
multibotkit/helpers/telegram.py
CHANGED
|
@@ -26,7 +26,9 @@ from multibotkit.schemas.telegram.outgoing import (
|
|
|
26
26
|
WebhookInfo,
|
|
27
27
|
MediaGroup,
|
|
28
28
|
ReplyKeyboardRemove,
|
|
29
|
-
Sticker,
|
|
29
|
+
Sticker,
|
|
30
|
+
Video,
|
|
31
|
+
Location,
|
|
30
32
|
)
|
|
31
33
|
|
|
32
34
|
|
|
@@ -67,6 +69,46 @@ class TelegramHelper(BaseHelper):
|
|
|
67
69
|
r = await self._perform_async_request(url, data)
|
|
68
70
|
return r
|
|
69
71
|
|
|
72
|
+
def sync_send_locations(
|
|
73
|
+
self,
|
|
74
|
+
chat_id: int,
|
|
75
|
+
latitude: float,
|
|
76
|
+
longitude: float,
|
|
77
|
+
reply_markup: Optional[
|
|
78
|
+
Union[InlineKeyboardMarkup, ReplyKeyboardMarkup, ReplyKeyboardRemove]
|
|
79
|
+
] = None,
|
|
80
|
+
):
|
|
81
|
+
url = self.tg_base_url + "sendLocation"
|
|
82
|
+
params = Location(
|
|
83
|
+
chat_id=chat_id,
|
|
84
|
+
latitude=latitude,
|
|
85
|
+
longitude=longitude,
|
|
86
|
+
reply_markup=reply_markup,
|
|
87
|
+
)
|
|
88
|
+
data = params.dict(exclude_none=True)
|
|
89
|
+
r = self._perform_sync_request(url, data)
|
|
90
|
+
return r
|
|
91
|
+
|
|
92
|
+
async def async_send_locations(
|
|
93
|
+
self,
|
|
94
|
+
chat_id: int,
|
|
95
|
+
latitude: float,
|
|
96
|
+
longitude: float,
|
|
97
|
+
reply_markup: Optional[
|
|
98
|
+
Union[InlineKeyboardMarkup, ReplyKeyboardMarkup, ReplyKeyboardRemove]
|
|
99
|
+
] = None,
|
|
100
|
+
):
|
|
101
|
+
url = self.tg_base_url + "sendLocation"
|
|
102
|
+
params = Location(
|
|
103
|
+
chat_id=chat_id,
|
|
104
|
+
latitude=latitude,
|
|
105
|
+
longitude=longitude,
|
|
106
|
+
reply_markup=reply_markup,
|
|
107
|
+
)
|
|
108
|
+
data = params.dict(exclude_none=True)
|
|
109
|
+
r = await self._perform_async_request(url, data)
|
|
110
|
+
return r
|
|
111
|
+
|
|
70
112
|
def sync_send_message(
|
|
71
113
|
self,
|
|
72
114
|
chat_id: int,
|
|
@@ -121,15 +163,31 @@ class TelegramHelper(BaseHelper):
|
|
|
121
163
|
r = await self._perform_async_request(url, data)
|
|
122
164
|
return r
|
|
123
165
|
|
|
124
|
-
def sync_answer_callback_query(
|
|
166
|
+
def sync_answer_callback_query(
|
|
167
|
+
self,
|
|
168
|
+
callback_query_id: str,
|
|
169
|
+
text: Optional[str] = None,
|
|
170
|
+
show_alert: Optional[bool] = False,
|
|
171
|
+
):
|
|
125
172
|
url = self.tg_base_url + "answerCallbackQuery"
|
|
126
173
|
data = {"callback_query_id": callback_query_id}
|
|
174
|
+
if show_alert and text is not None:
|
|
175
|
+
data["show_alert"] = show_alert
|
|
176
|
+
data["text"] = text
|
|
127
177
|
r = self._perform_sync_request(url, data)
|
|
128
178
|
return r
|
|
129
179
|
|
|
130
|
-
async def async_answer_callback_query(
|
|
180
|
+
async def async_answer_callback_query(
|
|
181
|
+
self,
|
|
182
|
+
callback_query_id: str,
|
|
183
|
+
text: Optional[str] = None,
|
|
184
|
+
show_alert: Optional[bool] = False,
|
|
185
|
+
):
|
|
131
186
|
url = self.tg_base_url + "answerCallbackQuery"
|
|
132
187
|
data = {"callback_query_id": callback_query_id}
|
|
188
|
+
if show_alert and text is not None:
|
|
189
|
+
data["show_alert"] = show_alert
|
|
190
|
+
data["text"] = text
|
|
133
191
|
r = await self._perform_async_request(url, data)
|
|
134
192
|
return r
|
|
135
193
|
|
|
@@ -133,6 +133,15 @@ class ReplyKeyboardRemove(BaseModel):
|
|
|
133
133
|
remove_keyboard: bool = Field(True, title="Remove reply keyboard")
|
|
134
134
|
|
|
135
135
|
|
|
136
|
+
class Location(BaseModel):
|
|
137
|
+
chat_id: int = Field(..., title="Unique identifier for the chat")
|
|
138
|
+
latitude: float = Field(..., title="Latitude of the location")
|
|
139
|
+
longitude: float = Field(..., title="Longitude of the location")
|
|
140
|
+
reply_markup: Optional[
|
|
141
|
+
Union[InlineKeyboardMarkup, ReplyKeyboardMarkup, ReplyKeyboardRemove]
|
|
142
|
+
] = Field(None, title="Inline or Reply keyboard attached to the message")
|
|
143
|
+
|
|
144
|
+
|
|
136
145
|
class Message(BaseModel):
|
|
137
146
|
chat_id: int = Field(..., title="Unique identifier for the chat")
|
|
138
147
|
text: str = Field(
|
|
@@ -8,7 +8,7 @@ multibotkit/dispatchers/vk.py,sha256=EsFOL2g3ju-nhsdyRY4JBTJxqQPmaPAB7Mkn462s4tk
|
|
|
8
8
|
multibotkit/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
multibotkit/helpers/base_helper.py,sha256=b4vlmwELwGUIJE0DvD2Lkk0LO-b-w0VWAnEnnYawOKQ,1462
|
|
10
10
|
multibotkit/helpers/fb.py,sha256=Z2Vo6A_fepVBQNcWCeelmH72zf_eKyXOXheUIlaIiBI,4329
|
|
11
|
-
multibotkit/helpers/telegram.py,sha256=
|
|
11
|
+
multibotkit/helpers/telegram.py,sha256=vk2VjAOFSJSXfwGlhgi-7JgIeq6Z9hWKkWMPWiBR8hc,52505
|
|
12
12
|
multibotkit/helpers/viber.py,sha256=74UQ3RtHS3iR8qA5XVeMOYfXaaMq2pF0cpItwehdr4o,9246
|
|
13
13
|
multibotkit/helpers/vk.py,sha256=QlI9rGEjhzqS-jcFrnZJ651lDbC4m33SSHAC1zWDyUU,5930
|
|
14
14
|
multibotkit/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -17,7 +17,7 @@ multibotkit/schemas/fb/incoming.py,sha256=sp4CeQohaDMOxz113dNxJDv_fSaGW5i8qzVS7F
|
|
|
17
17
|
multibotkit/schemas/fb/outgoing.py,sha256=Qm0gPHHipAolXpnOJC4J4bfYjQEWpX54vYygSwKtIV4,8036
|
|
18
18
|
multibotkit/schemas/telegram/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
multibotkit/schemas/telegram/incoming.py,sha256=ba67RQT5phOEIWTMG72SomUQrdxiuoKlXOxiz5fiaeA,10881
|
|
20
|
-
multibotkit/schemas/telegram/outgoing.py,sha256=
|
|
20
|
+
multibotkit/schemas/telegram/outgoing.py,sha256=hCQP7UKRfSh-hX6F5KDfZwxWItBkOWCo5zHRVtIYECk,11569
|
|
21
21
|
multibotkit/schemas/viber/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
multibotkit/schemas/viber/incoming.py,sha256=0sS9g-NmQFl_uoVz8pkbQ9zdNsXvGE52KxmzADoFIRM,4193
|
|
23
23
|
multibotkit/schemas/viber/outgoing.py,sha256=KI73IX-aawtAx3ejW2Hx0ivXBYuMVudUxhwyp1wv6rc,8252
|
|
@@ -31,8 +31,8 @@ multibotkit/states/managers/base.py,sha256=KOO-wtbj984-lLq6u6LhxR79NTftQV2c5uUG6
|
|
|
31
31
|
multibotkit/states/managers/memory.py,sha256=uN064uj2Q0ivK9LGEHJFaaaG6FEyXkIajS87TCAuYsI,1328
|
|
32
32
|
multibotkit/states/managers/mongo.py,sha256=K8upbLT0892YA2Qi9dDPXDP5jvQoS16T8FW-qapv1Xk,1927
|
|
33
33
|
multibotkit/states/managers/redis.py,sha256=C9HTjfVvttzOizycprWHd2C86DfKqd2Nyq5-5CqQNDI,1659
|
|
34
|
-
multibotkit-0.1.
|
|
35
|
-
multibotkit-0.1.
|
|
36
|
-
multibotkit-0.1.
|
|
37
|
-
multibotkit-0.1.
|
|
38
|
-
multibotkit-0.1.
|
|
34
|
+
multibotkit-0.1.17.dist-info/LICENSE,sha256=3iCLdX93Z5F6PpDqN6q7wufsBixXuTAYwgzntBQjYBQ,1069
|
|
35
|
+
multibotkit-0.1.17.dist-info/METADATA,sha256=Ri9Ycn2xmQUzY96Hljk5ILCHuA_WegZOM9J9IKcS-4Q,837
|
|
36
|
+
multibotkit-0.1.17.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
37
|
+
multibotkit-0.1.17.dist-info/top_level.txt,sha256=Meo5tTNdc5pf6_qwW6x4Cqz5iJJlXFqUDMti96pzV2I,12
|
|
38
|
+
multibotkit-0.1.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|