是否可以使用不同的代理设置同时运行多个线程。在线程中调用它可以吗:
proxy_support = urllib.request.ProxyHandler({'http': http_proxy})
opener = urllib.request.build_opener(proxy_support)
urllib.request.install_opener(opener)
如果您在从线程调用的函数中调用相同的代码,那可以吗?
谢谢
是否可以使用不同的代理设置同时运行多个线程。在线程中调用它可以吗:
proxy_support = urllib.request.ProxyHandler({'http': http_proxy})
opener = urllib.request.build_opener(proxy_support)
urllib.request.install_opener(opener)
如果您在从线程调用的函数中调用相同的代码,那可以吗?
谢谢