Re: http pipelining

2007-04-29 Thread John J. Lee
Steve Holden <[EMAIL PROTECTED]> writes: > [EMAIL PROTECTED] wrote: > > Which python module is capable of pipelining http requests? > > (I know httplib can send mulitple requests per tcp connection, but in > > a strictly serial way. ) > > > Oops, sorry, you meant sending requests in parallel, rig

Re: http pipelining

2007-04-27 Thread swq22
On Fri, 27 Apr 2007 13:50:21 -0400, Steve Holden <[EMAIL PROTECTED]> wrote: >[EMAIL PROTECTED] wrote: >> Which python module is capable of pipelining http requests? >> >> (I know httplib can send mulitple requests per tcp connection, but in >> a strictly serial way. ) >> >> >There's nothing in

Re: http pipelining

2007-04-27 Thread Steve Holden
[EMAIL PROTECTED] wrote: > Which python module is capable of pipelining http requests? > > (I know httplib can send mulitple requests per tcp connection, but in > a strictly serial way. ) > > There's nothing in the standard library, I believe, that includes both client and server functionality

Re: http pipelining

2007-04-27 Thread Steve Holden
[EMAIL PROTECTED] wrote: > Which python module is capable of pipelining http requests? > > (I know httplib can send mulitple requests per tcp connection, but in > a strictly serial way. ) > Oops, sorry, you meant sending requests in parallel, right? You'll need to use either urllib or urllib2 f