【Python】使用代理服务器访问网站

代理原理:在请求目的网站之前,先请求代理服务器,然后让代理服务器去请求目的网站,代理服务器拿到目前的网站数据后,再转发给我们

代码:

from urllib import request,parse

url = "http://httpbin.org/ip"

handler = request.ProxyHandler({"HTTP":"223.241.78.43:8010"});
opener = request.build_opener(handler)

resp = opener.open(url)
print(resp.read())

 

http://httpbin.org/ip  会很方便的查看请求的IP地址是多少

你可能感兴趣的:(Python)