mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
d92d989569
Otherwise, sphinx completely butchers the documentation.
53 lines
1.5 KiB
Python
53 lines
1.5 KiB
Python
import typing
|
|
|
|
from .users import UserMethods
|
|
from .. import hints
|
|
from ..tl import types, functions, custom
|
|
|
|
if typing.TYPE_CHECKING:
|
|
from .telegramclient import TelegramClient
|
|
|
|
|
|
class BotMethods(UserMethods):
|
|
async def inline_query(
|
|
self: 'TelegramClient',
|
|
bot: 'hints.EntityLike',
|
|
query: str,
|
|
*,
|
|
offset: str = None,
|
|
geo_point: 'types.GeoPoint' = None) -> custom.InlineResults:
|
|
"""
|
|
Makes an inline query to the specified bot (e.g. ``@vote New Poll``).
|
|
|
|
>>> client = ...
|
|
>>> client.inline_query('vote', 'My New Poll')
|
|
|
|
Args:
|
|
bot (`entity`):
|
|
The bot entity to which the inline query should be made.
|
|
|
|
query (`str`):
|
|
The query that should be made to the bot.
|
|
|
|
offset (`str`, optional):
|
|
The string offset to use for the bot.
|
|
|
|
geo_point (:tl:`GeoPoint`, optional)
|
|
The geo point location information to send to the bot
|
|
for localised results. Available under some bots.
|
|
|
|
Returns:
|
|
A list of `custom.InlineResult
|
|
<telethon.tl.custom.inlineresult.InlineResult>`.
|
|
"""
|
|
bot = await self.get_input_entity(bot)
|
|
result = await self(functions.messages.GetInlineBotResultsRequest(
|
|
bot=bot,
|
|
peer=types.InputPeerEmpty(),
|
|
query=query,
|
|
offset=offset or '',
|
|
geo_point=geo_point
|
|
))
|
|
|
|
return custom.InlineResults(self, result)
|