import telebot
bot = telebot.TeleBot('7425704287:AAFLjh3xfdyJdcetwwQHuPaKkTwjD3Yo1bA')
@bot.message_handler(commands=['start'])
def start_handler(message):
bot.send_message(message.chat.id, 'Привет')
@bot.message_handler(commands=['help'])
def help_handler(message):
bot.send_message(message.chat.id, 'Help information', parse_mode='html')
bot.polling(none_stop=True)