import telebot
import const
from telebot import types
bot = telebot.TeleBot(const.TOKEN)
@bot.message_handler(commands=['start'])
def startpg(message):
startmenu = types.ReplyKeyboardMarkup(True, True)
startmenu.row('Серия 1')
bot.send_message(
message.chat.id, 'выберите серию', reply_markup=startmenu)
@bot.message_handler(content_types=['text'])
def osnov(message):
if message.text == 'Серия 1':
bot.send_video(
message.chat.id, 'BAADAgADKgQAAln1yUpEhUoanM4brBYE')
bot.polling()