Users can interact with other bots via plain text messages as well as inline queries.
Contents
If a bot accepts inline queries, you can call it by using :meth:`~pyrogram.Client.get_inline_bot_results` to get the list of its inline results for a query:
# Get bot results for "Fuzz Universe" from the inline bot @vid bot_results = app.get_inline_bot_results("vid", "Fuzz Universe")
After you retrieved the bot results, you can use :meth:`~pyrogram.Client.send_inline_bot_result` to send a chosen result to any chat:
# Send the first result to your own chat app.send_inline_bot_result( "me", bot_results.query_id, bot_results.results[0].id )

