mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-24 15:59:18 +00:00
25 lines
620 B
ReStructuredText
25 lines
620 B
ReStructuredText
use_inline_bots
|
|
===============
|
|
|
|
This example shows how to query an inline bot (as user).
|
|
|
|
.. code-block:: python
|
|
|
|
from pyrogram import Client
|
|
|
|
# Create a new Client
|
|
app = Client("my_account")
|
|
|
|
|
|
async def main():
|
|
async with app:
|
|
# Get bot results for "hello" from the inline bot @vid
|
|
bot_results = await app.get_inline_bot_results("vid", "hello")
|
|
|
|
# Send the first result to your own chat (Saved Messages)
|
|
await app.send_inline_bot_result(
|
|
"me", bot_results.query_id,
|
|
bot_results.results[0].id)
|
|
|
|
|
|
app.run(main()) |