-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcallbacks.py
30 lines (27 loc) · 1003 Bytes
/
callbacks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import os
from translation import Translation
from pyrogram import Client as Bot
from pyrogram.types import InlineKeyboardMarkup
from pyrogram.types import InlineKeyboardButton
@Bot.on_callback_query()
async def button(bot, update):
if update.data == "home":
await update.message.edit_text(
text=Translation.START_TEXT.format(update.from_user.mention),
reply_markup=Translation.START_BUTTONS,
disable_web_page_preview=True
)
elif update.data == "help":
await update.message.edit_text(
text=Translation.HELP_TEXT,
reply_markup=Translation.HELP_BUTTONS,
disable_web_page_preview=True
)
elif update.data == "about":
await update.message.edit_text(
text=Translation.ABOUT_TEXT.format((await bot.get_me()).username),
reply_markup=Translation.ABOUT_BUTTONS,
disable_web_page_preview=True
)
else:
await update.message.delete()