我正在尝试连接到https页面,但每次都失败。我假设它可能与我设置的代理有关。
proxy = urllib2.ProxyHandler({'http': 'http://username:password@proxy'})
opener = urllib2.build_opener(proxy)
urllib2.install_opener(opener)
然后我尝试打开页面
page = urllib2.urlopen('https://sunflowerrealtors.com/category/market-stats/').read()
但是这失败了,那么有没有办法用我设置的内容访问https页面,或者我是否需要其他模块才能使其工作?