Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to python and trying to extract the contents of a page. When I do urlopen('http://www.google.com'), I get the following error :

File "<stdin>", line 1, in <module>    
  File "/usr/lib/python2.7/urllib2.py", line 126, in urlopen
    return _opener.open(url, data, timeout)
  File "/usr/lib/python2.7/urllib2.py", line 391, in open
    response = self._open(req, data)
  File "/usr/lib/python2.7/urllib2.py", line 409, in _open
    '_open', req)
  File "/usr/lib/python2.7/urllib2.py", line 369, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.7/urllib2.py", line 1185, in http_open
    return self.do_open(httplib.HTTPConnection, req)
  File "/usr/lib/python2.7/urllib2.py", line 1160, in do_open
    raise URLError(err)

Any solutions to this ?

share|improve this question
Please indent your error traceback correctly. Also, please include your actual code. – S.Lott Jun 3 '11 at 10:15
4  
what is the error message? – Roman Bodnarchuk Jun 3 '11 at 10:28
The error traceback started as a short, single-spaced, easy-to-read thing. Why is it double-spaced here? – S.Lott Jun 3 '11 at 11:04

1 Answer

that error message occurs if your net is offline

share|improve this answer
oh yeah something was prong with the proxy configuration .Thanks a lot – karthik A Jun 9 '11 at 10:38

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.