eve2ptp
eve2ptp
> Owner 没有,就一直卡那里,有对应的log文件吗
+1
or use pipeline to read config
目前在 urllib 和 requests 的调用方法这里加上代理链,能正常工作 ```python proxy_support` = urllib.request.ProxyHandler({ 'http' : 'http://127.0.0.1:7890', 'https': 'https://127.0.0.1:7890' }) opener = urllib.request.build_opener(proxy_support) urllib.request.install_opener(opener) def main(): updater = Updater(TOKEN, use_context=True, request_kwargs={"proxy_url": "http://127.0.0.1:7890"}) ```