Почему не работает бот на python pyTelegramBotAPI?
Почему не работает бот на python pyTelegramBotAPI?
код:
код
import telebot
bot = telebot.TeleBot("TOKEN")
@bot.message_handler(commands=['start'])
def send_welcome(message):
bot.reply_to(message, "Howdy, how are you doing?")
bot.polling()
не работает:
error
Traceback (most recent call last):
File "C:\Users\Oksana\Desktop\red.py", line 9, in
@bot.message_handler(commands=['start'])
AttributeError: 'TeleBot' object has no attribute 'message_handler'