我正在使用 urllib2 使用代理服务器发出 http 请求,如何在发出类似于 curl 的请求时使用源接口 ipaddress
curl --interface xx.xx.xx.xx -x yy.yy.yy.yy:8080 www.google.com
#!/usr/bin/env python
import urllib2
proxy = urllib2.ProxyHandler({'http': 'xx.xx.xx.xx:8080'})
opener = urllib2.build_opener(proxy)
urllib2.install_opener(opener)
result = urllib2.urlopen('http://www.google.com')
for line in result:
print line.rstrip("\n")