I need to access a webpage using
twisted.web.client.getPage()
or a similar method to download a webpage from a known address (ie:www.google.com), the problem is: I am behind a proxy server and I couldn't find anywhere explanations on how to configure twisted or factories to use my proxy, any ideas?
Bear in mind I have to specify user, password, host and port.
On my linux machine I setup http_proxy
and https_proxy
to http://user:pwd@ip:port
Thankyou in advance.