我编写了以下使用urllib2的python脚本:
def http_response(url):
try:
connection = urllib2.urlopen(url)
return connection.getcode()
connection.close()
except urllib2.HTTPError, e:
return e.getcode()
它运行良好,但是如果我想通过tor运行它,使用Proxychains我会收到Connection Refused
错误。我的问题是,有没有办法以一种兼容代理链的方式做同样的事情,而不使Python脚本连接到socks代理本身?