ошибка
import config
import telebot
bot = telebot.TeleBot(config.token)
@bot.message_handler(content_types=["text"])
def repeat_all_messages(message): # Название функции не играет никакой роли, в принципе
bot.send_message(message.chat.id, message.text)
if __name__ == '__main__':
bot.polling(none_stop=True)
File "D:/Projects/bot/bot.py", line 6, in <module>
@bot.message_handler(content_types=["text"])
AttributeError: 'TeleBot' object has no attribute 'message_handler'
В чем проблема?..
pip uninstall telebot pip install pyTelegramBotAPI
Обсуждают сегодня