我正在创建一个购物车机器人,当我发送初始消息时,这里没有任何反应是代码
import COVID19Py
import telebot
covid19 = COVID19Py.COVID19()
bot = telebot.TeleBot('')
@bot.message_handler(commands=['start'])
def start(message):
send_mess = f"<b>Привет {message.from_user.first_name}!</b>\nВведите страну"
bot.send_message(message.chat.id, send_mess, parse_mode='html')
bot.polling(none_stop=True)

一切都适用于我的令牌,但仅限于 VPN。
尝试更新 Telebot 和 pyTelegrammBotApi(pip install pyTelegramBotAPI)