mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-24 15:59:18 +00:00
68 lines
2.6 KiB
ReStructuredText
68 lines
2.6 KiB
ReStructuredText
bot_keyboards
|
|
=============
|
|
|
|
This example will show you how to send normal and inline keyboards (as bot).
|
|
|
|
You must log-in as a regular bot in order to send keyboards (use the token from @BotFather).
|
|
Any attempt in sending keyboards with a user account will be simply ignored by the server.
|
|
|
|
send_message() is used as example, but a keyboard can be sent with any other send_* methods,
|
|
like send_audio(), send_document(), send_location(), etc...
|
|
|
|
.. code-block:: python
|
|
|
|
from pyrogram import Client
|
|
from pyrogram.types import (ReplyKeyboardMarkup, InlineKeyboardMarkup,
|
|
InlineKeyboardButton)
|
|
|
|
# Create a client using your bot token
|
|
app = Client("my_bot", bot_token="123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11")
|
|
|
|
|
|
async def main():
|
|
async with app:
|
|
await app.send_message(
|
|
"me", # Edit this
|
|
"This is a ReplyKeyboardMarkup example",
|
|
reply_markup=ReplyKeyboardMarkup(
|
|
[
|
|
["A", "B", "C", "D"], # First row
|
|
["E", "F", "G"], # Second row
|
|
["H", "I"], # Third row
|
|
["J"] # Fourth row
|
|
],
|
|
resize_keyboard=True # Make the keyboard smaller
|
|
)
|
|
)
|
|
|
|
await app.send_message(
|
|
"me", # Edit this
|
|
"This is a InlineKeyboardMarkup example",
|
|
reply_markup=InlineKeyboardMarkup(
|
|
[
|
|
[ # First row
|
|
InlineKeyboardButton( # Generates a callback query when pressed
|
|
"Button",
|
|
callback_data="data"
|
|
),
|
|
InlineKeyboardButton( # Opens a web URL
|
|
"URL",
|
|
url="https://docs.pyrogram.org"
|
|
),
|
|
],
|
|
[ # Second row
|
|
InlineKeyboardButton( # Opens the inline interface
|
|
"Choose chat",
|
|
switch_inline_query="pyrogram"
|
|
),
|
|
InlineKeyboardButton( # Opens the inline interface in the current chat
|
|
"Inline here",
|
|
switch_inline_query_current_chat="pyrogram"
|
|
)
|
|
]
|
|
]
|
|
)
|
|
)
|
|
|
|
|
|
app.run(main()) |