python 中的电报机器人代理
telegram bot proxy in python
我正在使用 Telebot 为 Telegram python 制作一个机器人
bot = telebot.TeleBot('TokenHere')
apihelper.proxy = {'https': 'socks5://user:password@127.0.0.1:1080'}
@bot.message_handler(commands=['start', 'help'])
def send_welcome(message):
bot.reply_to(message, "Hello?")
我安装了最新版本:gunicorn、PySocks、pyTelegramBotAPI、requests 和 urllib3
仍然收到错误:
AssertionError: Not supported proxy scheme socks5
代理工作正常我用另一个机器人检查过它。
刚刚通过 yum 删除了一个 python-requests,并通过 pip 安装
我正在使用 Telebot 为 Telegram python 制作一个机器人
bot = telebot.TeleBot('TokenHere')
apihelper.proxy = {'https': 'socks5://user:password@127.0.0.1:1080'}
@bot.message_handler(commands=['start', 'help'])
def send_welcome(message):
bot.reply_to(message, "Hello?")
我安装了最新版本:gunicorn、PySocks、pyTelegramBotAPI、requests 和 urllib3
仍然收到错误:
AssertionError: Not supported proxy scheme socks5
代理工作正常我用另一个机器人检查过它。
刚刚通过 yum 删除了一个 python-requests,并通过 pip 安装