Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I open urls with:

site = urllib2.urlopen('http://google.com')

And what I want to do is connect the same way with a proxy I got somewhere telling me:

site = urllib2.urlopen('http://google.com', proxies={'http':'127.0.0.1'})

but that didn't work either.

I know urllib2 has something like a proxy handler, but I can't recall that function.

share|improve this question

3 Answers

up vote 45 down vote accepted
proxy = urllib2.ProxyHandler({'http': '127.0.0.1'})
opener = urllib2.build_opener(proxy)
urllib2.install_opener(opener)
urllib2.urlopen('http://www.google.com')
share|improve this answer
1  
Hi, @ZelluX, I only want the proxies setting enabled on some function, does that mean I have to install and uninstall the opener for every invocation of the function? – Satoru.Logic Nov 11 '11 at 8:42
@Satoru.Logic Maybe you can write a decorator to simplify the install/uninstall process? – ZelluX Nov 11 '11 at 13:25
Seems there's no uninstall method in urllib2, but we can make one-time proxy settings; instead of installing the opener, we create a request object, and use a opener to open it. – Satoru.Logic Nov 11 '11 at 13:39
2  
@Satoru.Logic: I think the traditional approach is to configure an environment variable like HTTP_PROXY and then check in your code if it is defined using os.environ["HTTP_PROXY"]. – ccpizza Sep 10 '12 at 10:43

You have to install a ProxyHandler

urllib2.install_opener(
    urllib2.build_opener(
        urllib2.ProxyHandler({'http': '127.0.0.1'})
    )
)
urllib2.urlopen('http://www.google.com')
share|improve this answer
I get File "D:/Desktop/Desktop/mygoogl", line 64, site = url.urlopen('google.com) File "C:\Python26\lib\urllib2.py", line 124, in urlopen return _opener.open(url, data, timeout) AttributeError: ProxyHandler instance has no attribute 'open' – Chris Stryker Sep 20 '09 at 2:43
I missed a call to urllib2.build_opener() – dcrosta Sep 20 '09 at 2:51

To use the default system proxies (e.g. from the http_support environment variable), the following works for the current request (without installing it into urllib2 globally):

url = 'http://www.example.com/'
proxy = urllib2.ProxyHandler()
opener = urllib2.build_opener(proxy)
in_ = opener.open(url)
in_.read()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.