I am making several http requests to a particular host using python's urllib2 library. Each time a request is made a new tcp and http connection is created which takes a noticeable amount of time. Is there any way to keep the tcp/http connection alive using urllib2?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
if you switch to httplib, you will have finer control over the underlying connection. for example:
this would send 2 HTTP GETs on the same underlying TCP connection. |
|||
|
|
urlgrabber supports keepalive. |
|||||||
|
|
I've used the third-party Modified example from the wiki:
|
||||
|
|
|
It looks like urlgrabber is not supported in newer Python versions. I have been playing around with urllib3 but it lacks good examples... |
|||
|
|