Re: Question about using cookielib in python 2.4
[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
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):