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地址。
原文地址:https://www.cnblogs.com/caijiyang/p/12546183.html
时间: 2024-11-09 05:09:08