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.

Seems that urllib2 sends HTTP/1.1 request by default?

share|improve this question
Is there any particular reason to use HTTP 1.0 over HTTP 1.1? – Waleed Khan Dec 1 '12 at 5:43
I am also curious why the need for HTTP 1.0 – Marwan Alsabbagh Dec 1 '12 at 6:19
I am writing a test script for one of my stupid homework, which only uses HTTP 1.0. (the test script is not part of the homework) – houqp Dec 1 '12 at 18:45

1 Answer

up vote 2 down vote accepted

urllib2 uses httplib under the hood to make the connection. You can change it to http 1.0 as shown below. I've included my apache servers access log to show how the http connection have change to 1.0

code

import urllib2, httplib
httplib.HTTPConnection._http_vsn = 10
httplib.HTTPConnection._http_vsn_str = 'HTTP/1.0'
print urllib2.urlopen('http://localhost/').read()

access.log

127.0.0.1 - - [01/Dec/2012:09:10:27 +0300] "GET / HTTP/1.1" 200 454 "-" "Python-urllib/2.7"
127.0.0.1 - - [01/Dec/2012:09:16:32 +0300] "GET / HTTP/1.0" 200 454 "-" "Python-urllib/2.7"
share|improve this answer
I finally figured out by defining my own handler, but your solution is much simpler, thanks :) – houqp Dec 1 '12 at 18:44

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.