BaseCookie.load(rawdata)
If rawdata is a string, parse it as an HTTP_COOKIE
and add the values found there as Morsel
s. If it is a dictionary, it is equivalent to:
for k, v in rawdata.items(): cookie[k] = v
BaseCookie.load(rawdata)
If rawdata is a string, parse it as an HTTP_COOKIE
and add the values found there as Morsel
s. If it is a dictionary, it is equivalent to:
for k, v in rawdata.items(): cookie[k] = v
Please login to continue.