Здравствуйте в чем ошибка в коде ?
Я только начал изучать Python Bot, и функцию ReplyKeyboardMarkup.
Code:
@bot.message_handler(commands=['start'])
def com_start(message):
keyboard = types.ReplyKeyboardMarkup(row_width=1, resize_keyboard=True)
button_1 = types.KeyboardButton(text='cnopka_1')
button_2 = types.KeyboardButton(text='cnopka_2')
keyboard.add(button_1, button_2)
bot.send_message(message.chat.id, 'proverka', reply_markup=keyboard)
@bot.message_handler(content_types=["text"])
def com_start_1(message):
if(cnopka_1):
bot.send_message(message.chat.id, 'proverka', reply_markup=markup)
elif(cnopka_2):
bot.send_message(message.chat.id, 'proverka', reply_markup=markup)
bot.polling(none_stop = True, interval = 0)