import telebot
bot = telebot.telebot('мой токен')
@bot.message_handler(commands=['start'])
def start_message(message):
bot.send_message(message.chat.id, 'тестирую')
bot.polling()
Traceback (most recent call last):
File "C:\Users\user\bot.py", line 2, in <module>
bot = telebot.telebot('мой токен')
AttributeError: module 'telebot' has no attribute 'telebot'