import telebot
bot = telebot.TeleBot('928952510:AAEG4bqoF9Q09yJItyg6UjfKb3ooi9ABV_8')
@bot.message_handler(commands=['start'])
def start_message(message):
bot.send_message(message.chat.id, 'Привет, ты написал мне /start')
bot.polling(none_stop=True)