vote up 3 vote down star
3

How can I make a "keep alive" HTTP request using Python's urllib2?

flag

2 Answers

vote up 6 vote down check

Use the urlgrabber library. This includes an HTTP handler for urllib2 that supports HTTP 1.1 and keepalive:

>>> import urllib2
>>> from keepalive import HTTPHandler
>>> keepalive_handler = HTTPHandler()
>>> opener = urllib2.build_opener(keepalive_handler)
>>> urllib2.install_opener(opener)
>>> 
>>> fo = urllib2.urlopen('http://www.python.org')
link|flag
Website has moved to linux.duke.edu/urlgrabber – David 2 days ago
Thanks David. I've updated the answer accordingly. – msanders 2 days ago
vote up 1 vote down

This handler might work. Look to the main introductory comment for usage details.

link|flag

Your Answer

Get an OpenID
or

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