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

I tried to open one url using python module urllib2 but it raise an error HTTP Error 505: HTTP Version not supported. When I tried using simple wget "url", it works perfectly fine. So far, I only encounter this error when trying to access this particular url, other url looks fine.

Below is the error stack that generated from python

  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 400, in open
    response = meth(req, response)
  File "/usr/lib/python2.7/urllib2.py", line 513, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib/python2.7/urllib2.py", line 438, in error
    return self._call_chain(*args)
  File "/usr/lib/python2.7/urllib2.py", line 372, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.7/urllib2.py", line 521, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
share|improve this question
4  
Because the server returned a 505 response. We'd need more detail to be able to say why. – Martijn Pieters Nov 20 '12 at 16:57

closed as not a real question by Martijn Pieters, Lev Levitsky, Mike Pennington, C-Pound Guru, Nik.... Nov 23 '12 at 4:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Did you try with User-Agent? I've needed to specify this to open some URLs. Try this:

import urllib2

url = "http://www.google.com"

headers = {
    "User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20100101 Firefox/16.0"
}

try:
    req = urllib2.Request(url, None, headers)
    get = urllib2.urlopen(req).read()
    print get # or write into file
except (urllib2.HTTPError, urllib2.URLError), exception:
    print exception
share|improve this answer

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