@bot.message_handler(commands=['start','home'])
def main(messege):
bot.send_message(messege.chat.id, f"Hello {messege.from_user.first_name}")
@bot.message_handler(commands=['start'])
def keyboard_button(message):
marcup = types.ReplyKeyboardMarkup(resize_keyboard = True)
btn1 = types.KeyboardButton('go to website')
marcup.row(btn1)
bot.send_message(message.chat.id,'hello pp',reply_markup=marcup)