import telebot
bot = telebot.TeleBot("TOKEN")
@bot.message_handler(commands=["start"])
def sms(message):
bot.send_message("@durov", "Привет")
bot.polling()
bot = telebot.TeleBot("TOKEN")
@bot.message_handler(commands=["start"])
def sms(message):
bot.send_message("@durov", "Привет")
@bot.message_handler(content_types='text')
def key_words(message):
if "привет" in message.text.lower():
bot.send_message("@durov", "Привет")
bot.polling()