Re: Question about using cookielib in python 2.4

2007-03-30 Thread John J. Lee
[EMAIL PROTECTED] writes: > Hi, > I am following the example of Python cookbook (14.7) about using > cookielib in python2.4 > > cj = cookielib.LWPCookieJar() > // code to send out the request > print "Coookie-" > if cj is not None: > fo

Question about using cookielib in python 2.4

2007-03-29 Thread Marko . Cain . 23
Hi, I am following the example of Python cookbook (14.7) about using cookielib in python2.4 cj = cookielib.LWPCookieJar() // code to send out the request print "Coookie-" if cj is not None: for index, cookie in enumerate(cj):