mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-26 03:13:45 +03:00
34 lines
841 B
Python
34 lines
841 B
Python
import typing
|
|
|
|
from ..types import _custom
|
|
from .._misc import hints
|
|
from .. import _tl
|
|
|
|
if typing.TYPE_CHECKING:
|
|
from .telegramclient import TelegramClient
|
|
|
|
|
|
async def inline_query(
|
|
self: 'TelegramClient',
|
|
bot: 'hints.EntityLike',
|
|
query: str,
|
|
*,
|
|
entity: 'hints.EntityLike' = None,
|
|
offset: str = None,
|
|
geo_point: '_tl.GeoPoint' = None) -> _custom.InlineResults:
|
|
bot = await self.get_input_entity(bot)
|
|
if entity:
|
|
peer = await self.get_input_entity(entity)
|
|
else:
|
|
peer = _tl.InputPeerEmpty()
|
|
|
|
result = await self(_tl.fn.messages.GetInlineBotResults(
|
|
bot=bot,
|
|
peer=peer,
|
|
query=query,
|
|
offset=offset or '',
|
|
geo_point=geo_point
|
|
))
|
|
|
|
return _custom.InlineResults(self, result, entity=peer if entity else None)
|