Python urllib.request.urlopen() returning error 10061?
I'm trying to download the HTML of a page ( http://www.google.com in this case) but I'm getting back an error. Here is my interactive prompt session: Python 3.2.2 (default, Sep 4 2011, 09:51:08) [MSC v.1500 32 bit (Intel)] on win 32 Type "help", "copyright", "credits" or "license" for more information. >>> import urllib >>> import urllib.request >>> html = urllib.request.urlopen("http://www.google.com") Traceback (most recent call last): File "\\****.****.org\myhome\python\lib\urllib\request.py", line 1136, in do_open h.request(req.get_method(), req.selector, req.data, headers) File "\\****.**