import telebot
bot = telebot.TeleBot("TOKEN")
@bot.message_handler(commands=['start', 'help'])
def send_welcome(message):
bot.reply_to(message, "Howdy, how are you doing?")
@bot.message_handler(func=lambda message: True)
def echo_all(message):
bot.reply_to(message, message.text)
bot.polling() выдает ошыбку: Traceback (most recent call last):
File "C:\Python\телеграмбот\a.py", line 3, in <module>
bot = telebot.TeleBot("1902243984:AAESC7jvolFVCYGqFR6dq4F-0d8tbefFYj8")
AttributeError: module 'telebot' has no attribute 'TeleBot'
проверь что установлена либа pytelegrambotapi и удалена либа telebot
WARNING: Skipping telebot as it is not installed. Requirement already satisfied: pyTelegramBotAPI in c:\users\пользователь\appdata\local\programs\python\python39\lib\site-packages (3.8.2)
Обсуждают сегодня