http.cookies.Morsel.set()

Morsel.set(key, value, coded_value) Set the key, value and coded_value attributes. Deprecated since version 3.5: The undocumented LegalChars parameter is ignored and will be removed in a future version.

http.cookies.Morsel.OutputString()

Morsel.OutputString(attrs=None) Return a string representing the Morsel, without any surrounding HTTP or JavaScript. The meaning for attrs is the same as in output().

http.cookies.Morsel.output()

Morsel.output(attrs=None, header='Set-Cookie:') Return a string representation of the Morsel, suitable to be sent as an HTTP header. By default, all the attributes are included, unless attrs is given, in which case it should be a list of attributes to use. header is by default "Set-Cookie:".

http.cookies.Morsel.key

Morsel.key The name of the cookie. Deprecated since version 3.5: assigning to key; use set() instead.

http.cookies.Morsel.js_output()

Morsel.js_output(attrs=None) Return an embeddable JavaScript snippet, which, if run on a browser which supports JavaScript, will act the same as if the HTTP header was sent. The meaning for attrs is the same as in output().

http.cookies.Morsel.isReservedKey()

Morsel.isReservedKey(K) Whether K is a member of the set of keys of a Morsel.

http.cookies.Morsel.copy()

Morsel.copy(value) Return a shallow copy of the Morsel object. Changed in version 3.5: return a Morsel object instead of a dict.

http.cookies.Morsel.coded_value

Morsel.coded_value The encoded value of the cookie — this is what should be sent. Deprecated since version 3.5: assigning to coded_value; use set() instead.

http.cookies.Morsel

class http.cookies.Morsel Abstract a key/value pair, which has some RFC 2109 attributes. Morsels are dictionary-like objects, whose set of keys is constant — the valid RFC 2109 attributes, which are expires path comment domain max-age secure version httponly The attribute httponly specifies that the cookie is only transferred in HTTP requests, and is not accessible through JavaScript. This is intended to mitigate some forms of cross-site scripting. The keys are case-insensitive and their d

http.cookies.CookieError

exception http.cookies.CookieError Exception failing because of RFC 2109 invalidity: incorrect attributes, incorrect Set-Cookie header, etc.