Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用以下代码在 urllib2 中使用代理
proxy = urllib2.ProxyHandler({'http': '198.154.114.100'}) opener = urllib2.build_opener(proxy) urllib2.install_opener(opener)
如何检查代理是否真的被使用?我想打印用于 urllib 模块的 IP。
一种间接方法是使用提供 IP 信息的站点,例如 ifconfig.me:
opener.open('http://ifconfig.me/ip').read()
将读取上述服务提供的 IP。