ProxyHandler 处理器(代理设置)

Posted klmyoil

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ProxyHandler 处理器(代理设置)相关的知识,希望对你有一定的参考价值。

1 from urllib import request
# 1 使用Proxyhandler 传入构建handler 2 handler=request.ProxyHandler({‘http‘:‘10.0.0.1:8080‘})

# 2 使用创建的handler 构建一个opener 3 opener=request.build_opener(handler) 4 rep=request.Request(‘http://www.baidu.com‘)
# 3 使用opener 去发送 5 resp=opener.open(rep) 6 print(resp.read().decode(‘utf-8‘))

 

from urllib import request
url="http://www.httpbin.org/ip"
resp=request.urlopen(url)
with open("1.txt",‘w‘,encoding=‘utf-8‘)as pf:
    pf.write(resp.read().decode(‘utf-8‘))
1.txt
{"origin":"124.88.160.199"}

 

以上是关于ProxyHandler 处理器(代理设置)的主要内容,如果未能解决你的问题,请参考以下文章

Python爬虫6-利用ProxyHandler设置代理服务器

python3下urllib.request库高级应用之ProxyHandler处理器(代理设置)

python中ProxyHandler处理器(代理)

proxyhandler处理器(新手上路)

python爬虫 ProxyHandler处理器

python使用代理访问服务器