73 lines
2.7 KiB
Python
73 lines
2.7 KiB
Python
# Pyrogram - Telegram MTProto API Client Library for Python
|
|
# Copyright (C) 2017-2020 Dan <https://github.com/delivrance>
|
|
#
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
|
|
"""This example shows how to handle inline queries.
|
|
Two results are generated when users invoke the bot inline mode, e.g.: @pyrogrambot hi.
|
|
It uses the @on_inline_query decorator to register an InlineQueryHandler.
|
|
"""
|
|
|
|
from uuid import uuid4
|
|
|
|
from pyrogram import (
|
|
Client, InlineQueryResultArticle, InputTextMessageContent, InlineKeyboardMarkup, InlineKeyboardButton
|
|
)
|
|
|
|
app = Client("my_bot", bot_token="123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11")
|
|
|
|
|
|
@app.on_inline_query()
|
|
def answer(client, inline_query):
|
|
inline_query.answer(
|
|
results=[
|
|
InlineQueryResultArticle(
|
|
id=uuid4(),
|
|
title="Installation",
|
|
input_message_content=InputTextMessageContent(
|
|
"Here's how to install **Pyrogram**"
|
|
),
|
|
url="https://docs.pyrogram.org/intro/install",
|
|
description="How to install Pyrogram",
|
|
thumb_url="https://i.imgur.com/JyxrStE.png",
|
|
reply_markup=InlineKeyboardMarkup(
|
|
[
|
|
[InlineKeyboardButton("Open website", url="https://docs.pyrogram.org/intro/install")]
|
|
]
|
|
)
|
|
),
|
|
InlineQueryResultArticle(
|
|
id=uuid4(),
|
|
title="Usage",
|
|
input_message_content=InputTextMessageContent(
|
|
"Here's how to use **Pyrogram**"
|
|
),
|
|
url="https://docs.pyrogram.org/start/invoking",
|
|
description="How to use Pyrogram",
|
|
thumb_url="https://i.imgur.com/JyxrStE.png",
|
|
reply_markup=InlineKeyboardMarkup(
|
|
[
|
|
[InlineKeyboardButton("Open website", url="https://docs.pyrogram.org/start/invoking")]
|
|
]
|
|
)
|
|
)
|
|
],
|
|
cache_time=1
|
|
)
|
|
|
|
|
|
app.run() # Automatically start() and idle()
|