0
proxy_support=urllib.request.ProxyHandler({'http':random.choice(iplist)})
opener=urllib.request.build_opener(proxy_support)
urllib.request.install_opener(opener)
但是,如果我用它來打開'https'網站,它不使用代理。如何解決它?如何使用proxie通過urllib打開'https'網站?