elif call.data =='button4'
.edit_message
bot.delete_message(call.message.chat.id, call.message.message_id)
markup.add(types.InlineKeyboardButton('Кнопка', callback_data='btn')
markup.add(types.InlineKeyboardButton('Кнопка', callback_data='btn'))
<tg-emoji>
keyboard = types.InlineKeyboardMarkup(row_width=1)
return markup
def showChannels():
markup = types.InlineKeyboardMarkup()
for channel in sponsorChannels:
markup.add(types.InlineKeyboardButton(text=channel[1], url=channel[2]))
markup.add(types.InlineKeyboardButton(text="Я ПОДПИСАЛСЯ", callback_data="subchanneldone"))
return markup
if message.text == " Личный Кабинет":
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
item1 = types.KeyboardButton("Пополнить ")
item2 = types.KeyboardButton("Вывести")
item3 = types.KeyboardButton("Верификация")
item4 = types.KeyboardButton("Настройки")
markup.add(item1, item2, item3, item4)
bot.send_message(message.chat.id, ' Личный кабинет :\n'
'\n➖➖➖➖➖➖➖➖➖➖\n'
'\n Верификация: ❌\n'
'\n➖➖➖➖➖➖➖➖➖➖\n'
'\n Общий баланс: 0 \n'
'\n ID: 343538158\n'
'\n Пользователей онлайн:\n'
'\n➖➖➖➖➖➖➖➖➖➖\n'
'\nЗагруженность Bitcoin:\n'
'\nЗагруженность Ethereum:\n'
'\nЗагруженость Litecoin:'.format(message.from_user))
elif message.text == " Мои активы":
@bot.callback_query_handler(func=lambda call: True)
def inside_button_click(call):
@bot.callback_query_handler(func=lambda call:True)
def handle_button_click(call):
@bot.callback_query_handler(func=lambda call: call.data == '4')
def inside_button_click(call):
bot.send_message(call.message.chat.id, f'мой текст')