код :import telebot
bot = telebot.TeleBot('token')
@bot.message_handler(commands=['start'])
def start_message(message):
bot.send_message(message.chat.id, "Привет ✌️ ")
bot.polling(none_stop=True, interval=0)
Выдает ошибку @bot.message_handler(commands=['start'])
AttributeError: 'TeleBot' object has no attribute 'message_handler'
Почему?
-
Вопрос задан
-
402 просмотра