Telethon/telethon/client/bots.py

63 lines
1.8 KiB
Python
Raw Normal View History

import typing
2018-08-01 02:06:47 +03:00
from .users import UserMethods
from .. import hints
2018-08-01 02:06:47 +03:00
from ..tl import types, functions, custom
if typing.TYPE_CHECKING:
from .telegramclient import TelegramClient
2018-08-01 02:06:47 +03:00
class BotMethods(UserMethods):
async def inline_query(
self: 'TelegramClient',
bot: 'hints.EntityLike',
query: str,
*,
offset: str = None,
geo_point: 'types.GeoPoint' = None) -> custom.InlineResults:
2018-08-01 02:06:47 +03:00
"""
Makes an inline query to the specified bot (e.g. ``@vote New Poll``).
2018-08-01 02:06:47 +03:00
>>> 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>`.
2019-05-09 13:24:37 +03:00
Example:
.. code-block:: python
# Make an inline query to @like
results = client.inline_query('like', 'Do you like Telethon?')
# Send the first result to some chat
message = results[0].click('TelethonOffTopic')
2018-08-01 02:06:47 +03:00
"""
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)