SimpleCookie SimpleCookie supports strings as cookie values. When setting the value using the dictionary assignment notation, SimpleCookie calls the builtin str() to convert the value to a string. Values received from HTTP are kept as strings.
There are no implemented interfaces.
fromkeys
(type: builtin_function_or_method
)
<built-in method fromkeys of type object at 0x8359c8c>
clear(...)
copy(...)
get(...)
has_key(...)
items(...)
iteritems(...)
iterkeys(...)
itervalues(...)
keys(...)
pop(...)
popitem(...)
setdefault(...)
update(...)
values(...)
js_output(attrs=None)
Return a string suitable for JavaScript.
load(rawdata)
Load cookies from a string (presumably HTTP_COOKIE) or
from a dictionary. Loading cookies from a dictionary d
is equivalent to calling:
map(Cookie.__setitem__, d.keys(), d.values())
output(attrs=None, header='Set-Cookie:', sep='\n')
Return a string suitable for HTTP.
value_decode(val)
value_encode(val)
There are no known subclasses.