reply_markup
в методе sendMessage
. Подробнее тут: https://core.telegram.org/bots/api#sendmessage import telebot
#keyboard
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
item1 = types.KeyboardButton("Понедельник")
item2 = types.KeyboardButton("Вторник")
item3 = types.KeyboardButton("Среда")
item4 = types.KeyboardButton("Четверг")
item5 = types.KeyboardButton("Пятница")
item6 = types.KeyboardButton("Суббота")
tim = types.KeyboardButton('Расписание звонков')
markup.add(item1, item2, item3, item4, item5, item6, tim)
bot.send_message(message.chat.id, reply_markup=markup)