码迷,mamicode.com
首页 > 编程语言 > 详细

python爬虫使用代理

时间:2020-03-22 16:11:07      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:open   pre   爬虫   python   import   res   lib   请求   python爬虫   

from urllib import request

url = http://httpbin.org/ip

#使用代理
#1.使用ProxyHandler构建一个hander
handler = request.ProxyHandler({
"HTTP":"182.35.84.11:9999"
})
#2.使用上面的hander构建一个opener
opener = request.build_opener(handler)
#3.使用opener去发送一个请求
resp = opener.open(url)
print(resp.read())
http://httpbin.org/ip
访问该网址可以返回你的ip地址。

python爬虫使用代理

标签:open   pre   爬虫   python   import   res   lib   请求   python爬虫   

原文地址:https://www.cnblogs.com/caijiyang/p/12546183.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!