Hello everyone,

Is it possible to use a proxy with Twisted? I can do this with urllib2 :

proxy = urllib2.ProxyHandler({"http": "http://my.proxy.com:8080"})
opener = urllib2.build_opener(proxy)
urllib2.install_opener(opener)

will that suffice? I'd need SOCKSv5 and HTTP proxy support.

Thanks,
Gabriel

_______________________________________________
Twisted-Python mailing list
Twisted-Python@twistedmatrix.com
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Reply via email to