vote up 1 vote down star
1

I'm getting a getaddress error and after doing some sleuthing, it looks like it might be my corporate intranet not allowing the connection (I'm assuming due to security, although it is strange that IE works but won't allow Python to open a url). Is there a safe way to get around this?

Here's the exact error:

Traceback (most recent call last):
  File "<pyshell#1>", line 1, in <module>
    b = urllib.urlopen('http://www.google.com')
  File "C:\Python26\lib\urllib.py", line 87, in urlopen
    return opener.open(url)
  File "C:\Python26\lib\urllib.py", line 203, in open
    return getattr(self, name)(url)
  File "C:\Python26\lib\urllib.py", line 342, in open_http
    h.endheaders()
  File "C:\Python26\lib\httplib.py", line 868, in endheaders
    self._send_output()
  File "C:\Python26\lib\httplib.py", line 740, in _send_output
    self.send(msg)
  File "C:\Python26\lib\httplib.py", line 699, in send
    self.connect()
  File "C:\Python26\lib\httplib.py", line 683, in connect
    self.timeout)
  File "C:\Python26\lib\socket.py", line 498, in create_connection
    for res in getaddrinfo(host, port, 0, SOCK_STREAM):
IOError: [Errno socket error] [Errno 11001] getaddrinfo failed

More info: I also get this error with urllib2.urlopen

flag

5 Answers

vote up 3 vote down

You probably need to fill in proxy information.

import urllib2
proxy_handler = urllib2.ProxyHandler({'http': 'http://yourcorporateproxy:12345/'})
proxy_auth_handler = urllib2.HTTPBasicAuthHandler()
proxy_auth_handler.add_password('realm', 'host', 'username', 'password')

opener = build_opener(proxy_handler, proxy_auth_handler)
opener.open('http://www.stackoverflow.com')
link|flag
vote up 2 vote down

Check you are using the correct proxy.
You can get the proxy information by using urllib.getproxies (note: getproxies does not work with dynamic proxy configuration, like when using PAC).

Update As per information about empty proxy list, I would suggest using an urlopener, with the proxy name and information.
Some good information about how use proxies urlopeners:

  1. Urllib manual
  2. Michael Foord's introduction to urllib
link|flag
urllib.getproxies() is returning an empty dictionary. Proxies feels like it's something that might help me though. – mandroid Jul 2 at 22:35
vote up 1 vote down

Possibly this is a DNS issue, try urlopen with the IP address of the web server you're accessing, i.e.

import urllib
URL="http://66.102.11.99"   # www.google.com
f = urllib.urlopen(URL)
f.read()

If this succeeds, then it's probably a DNS issue rather than a proxy issue (but you should also check your proxy setup).

link|flag
I'm getting this error when I try that: IOError: [Errno socket error] [Errno 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond It looks like it just times out. – mandroid Jul 3 at 16:39
vote up 1 vote down

Looks like a DNS problem.

Since you are using Windows, you can try run this command

nslookup www.google.com

To check if the web address can be resolved successfully.

If not, it is a network setting issue

If OK, then we have to look at possible alternative causes

link|flag
When I try this it gives me a server and an IP address followed by a comment that the server can't find www.google.com: Non-existent domain. – mandroid Jul 3 at 16:39
vote up 0 vote down

Hello there

I was facing the same issue. In my system the proxy configuration is through a .PAC file. So i opended that file, took out the default proxy url, for me it was http://168.219.61.250:8080/

Following test code worked for me :

import urllib2

proxy_support = urllib2.ProxyHandler({'http': 'http://168.219.61.250:8080/'})
opener = urllib2.build_opener(proxy_support)
urllib2.install_opener(opener)
response = urllib2.urlopen('http://python.org/')
html = response.read()
print html

You might need to add some more code, if your proxy requires authentication

Hope this helps!!

link|flag
1  
Where did you find your proxy config? – mandroid Jul 20 at 14:25
I downloaded the .pac file from the proxy config url (for the pac file). In the .pac file you can easily see the default proxy address. – hotadvice Jul 31 at 0:24

Your Answer

Get an OpenID
or

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