首页 > 代码库 > python urllib2 使用代理
python urllib2 使用代理
# The proxy address and port: proxy_info = { ‘host‘ : ‘proxy.myisp.com‘, ‘port‘ : 3128 } # We create a handler for the proxy proxy_support = urllib2.ProxyHandler({"http" : "http://%(host)s:%(port)d" % proxy_info}) # We create an opener which uses this handler: opener = urllib2.build_opener(proxy_support) # Then we install this opener as the default opener for urllib2: urllib2.install_opener(opener) # Now we can send our HTTP request: htmlpage = urllib2.urlopen("http://sebsauvage.net/").read(200000) #如果代理需要验证 proxy_info = { ‘host‘ : ‘proxy.myisp.com‘, ‘port‘ : 3128, ‘user‘ : ‘John Doe‘, ‘pass‘ : ‘mysecret007‘ } proxy_support = urllib2.ProxyHandler({"http" : "http://%(user)s:%(pass)s@%(host)s:%(port)d" % proxy_info}) opener = urllib2.build_opener(proxy_support) urllib2.install_opener(opener) htmlpage = urllib2.urlopen("http://sebsauvage.net/").read(200000) #该代码片段来自于: http://www.sharejs.com/codes/python/226
python urllib2 使用代理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。