Excerpts from linuxchix: 15-Feb-100 [techtalk] reading cookies .. by
Tricia [EMAIL PROTECTED]
> is there anyone out there that knows how to read IE5 cookies using python.
> i tried this approach but IE5 does not appear to have an environment
> variable called HTTP_COOKIE.
I don't know the answer
help!
is there anyone out there that knows how to read IE5 cookies using python.
i tried this approach but IE5 does not appear to have an environment
variable called HTTP_COOKIE.
--code--
import os, cgi, Cookie
c = Cookie.Cookie()
try:
c.load(os.environ["HTTP_COOKIE"])
except Ke