# Pyrogram - Telegram MTProto API Client Library for Python # Copyright (C) 2017-2018 Dan Tès # # This file is part of Pyrogram. # # Pyrogram is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published # by the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Pyrogram is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with Pyrogram. If not, see . from pyrogram.api import functions, types from pyrogram.api.errors import UnknownError from ....ext import BaseClient class GetInlineBotResults(BaseClient): def get_inline_bot_results(self, bot: int or str, query: str, offset: str = "", location: tuple = None): """Use this method to get bot results via inline queries. You can then send a result using :obj:`send_inline_bot_result ` Args: bot (``int`` | ``str``): Unique identifier of the inline bot you want to get results from. You can specify a @username (str) or a bot ID (int). query (``str``): Text of the query (up to 512 characters). offset (``str``): Offset of the results to be returned. location (``tuple``, *optional*): Your location in tuple format (latitude, longitude), e.g.: (51.500729, -0.124583). Useful for location-based results only. Returns: On Success, :obj:`BotResults ` is returned. Raises: :class:`Error ` """ # TODO: Split location parameter into lat and long try: return self.send( functions.messages.GetInlineBotResults( bot=self.resolve_peer(bot), peer=types.InputPeerSelf(), query=query, offset=offset, geo_point=types.InputGeoPoint( lat=location[0], long=location[1] ) if location else None ) ) except UnknownError as e: # TODO: Add this -503 Timeout error into the Error DB if e.x.error_code == -503 and e.x.error_message == "Timeout": raise TimeoutError("The inline bot didn't answer in time") from None else: raise e