Re: Handling cookies without urllib2 and cookielib

2007-12-17 Thread Joshua Kugler
Gabriel Genellina wrote: > On 14 dic, 23:44, Joshua Kugler <[EMAIL PROTECTED]> wrote: > >> I'm using HTTPlib to construct some functional tests for a web app we're >> writing. We're not using urllib2 because we need support for PUT and >> DELETE methods, which urllib2 does not do. >> >> We also

Re: Handling cookies without urllib2 and cookielib

2007-12-15 Thread Gabriel Genellina
On 14 dic, 23:44, Joshua Kugler <[EMAIL PROTECTED]> wrote: > I'm using HTTPlib to construct some functional tests for a web app we're > writing. We're not using urllib2 because we need support for PUT and > DELETE methods, which urllib2 does not do. > > We also need client-side cookie handling.

Handling cookies without urllib2 and cookielib

2007-12-14 Thread Joshua Kugler
Standard disclaimer: read, googled, read some more. If you have a link, please free free to point me there. I'm using HTTPlib to construct some functional tests for a web app we're writing. We're not using urllib2 because we need support for PUT and DELETE methods, which urllib2 does not do. We