How to ignore windows proxy settings with python urllib?
Posted
by Jaú
on Stack Overflow
See other posts from Stack Overflow
or by Jaú
Published on 2010-04-15T12:55:51Z
Indexed on
2010/04/15
13:03 UTC
Read the original article
Hit count: 282
I want Python to ignore Windows proxy settings when using urllib
. The only way I managed to do that was disabling all proxy settings on Internet Explorer. Is there any programmatic way?
os.environ['no_proxy']
is not a good option, since I'd like to avoid proxy for all addresses.
© Stack Overflow or respective owner