import urllib.request
我是社区新手 这是我的.py
proxy= urllib.request.ProxyHandler({"http" : 'http://'removed for SF':'same'})
testip=urllib.request.urlopen('http://httpbin.org/ip').read()
testpip=urllib.request.urlopen('http://httpbin.org/ip', proxies=proxy).read()
然后我在shell中使用testip
然后testpip
进行测试,
和IP地址匹配。
他们应该匹配