我的电报机器人有问题。只是使用
bot = telebot.TeleBot(TOKEN)
bot.polling(none_stop=False ,interval=2)
当互联网连接断开时,脚本会崩溃,因为轮询失败。
我想添加一些代码以在机器人轮询之前检查互联网连接是否可用,
import urllib
try :
url = "https://www.google.com"
urllib.urlopen(url)
status = "Connected"
except :
status = "Not connect"
就像是:
“如果”状态为“已连接”---> 机器人轮询。
else ----> 等待并在“秒”后重试