from telebot import *
TOKEN = ''
bot = telebot.TeleBot(TOKEN)
Katalog = types.InlineKeyboardMarkup(row_width=1)
Steam = types.InlineKeyboardButton(text = 'Steam Key`s',callback_data='steam')
Epic = types.InlineKeyboardButton(text= 'Epic',callback_data='epic')
Katalog.add(Steam, Epic)
@bot.message_handler(content_types=['text'])
def start_message(message):
if message.text == '/help':
help_message = 'Данный бот создан для продаж интернет товаров'
bot.send_message(message.chat.id, help_message)
else:
bot.send_message(message.chat.id,'Выберите желаемый товар:',reply_markup='Katalog')
bot.polling(none_stop=True)