How use Secure Web Proxy, like documented this (443, HTTPS) with urllib2? For example, i'm trying
opener = urllib2.build_opener(urllib2.HTTPHandler, urllib2.HTTPSHandler,urllib2.ProxyHandler({"https": 'https://some_proxy.com:443'}))
urllib2.install_opener(opener)
but getting timeout. The proxy is works in others applications, such on browsers via PAC file.
P.S. Proxy with urllib2 not duplicate question, because doesn't have info about Secure Web Proxy.