cookielib

Rene Pijlman reply.in.the.newsgroup at my.address.is.invalid
Wed Feb 22 09:29:50 EST 2006


sri2097:
>urllib2 does not support cookies. 

It does in 2.4. This code enables cookie support in all consequent calls
through urrlib2:

    import cookielib, urllib2
    opener = urllib2.build_opener(urllib2.HTTPCookieProcessor())
    urllib2.install_opener(opener)

-- 
René Pijlman



More information about the Python-list mailing list