- 14
- 2
Написал код для теста , выходит ошибка «telebot not attribute polling”
Что то не так с кодом? Вроде телебот обновил.
import telebot
from telebot import types
import requests
bot = telebot.TeleBot('')
@bot.message_handler(commands=['start'])
def start(message):
bot.send_message(message.from_user.id, "Приветствую @{message.from_user.username}!🔥")
bot.infinity.polling()
Что то не так с кодом? Вроде телебот обновил.
Python:
from telebot import types
import requests
bot = telebot.TeleBot('')
@bot.message_handler(commands=['start'])
def start(message):
bot.send_message(message.from_user.id, "Приветствую @{message.from_user.username}!🔥")
bot.infinity.polling()