python設置proxy

最近在研究python爬蟲,看到一篇python設置proxy的,寫來與大家分享(轉載自http://www.sharejs.com/codes/python/226)

import urllib2
# The proxy address and port:
proxy_info = {'host' : 'proxy.myisp.com',
              'port' : 3182}
# 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)


# If the proxy must to be confirmed
proxy_info = {'host' : 'proxy.myisp.com',
               'port' : 3128,
               'user' :'John Doe',
               'pass' : 'mysecret007'
              }
proxy_support = urllib2.ProxyHandler({"http" : "http://%(usr)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)


發佈了19 篇原創文章 · 獲贊 15 · 訪問量 3萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章