: L{bytes} or L{unicode} @param expires: cookie expire attribute value in "Wdy, DD Mon YYYY HH:MM:SS GMT" format @type expires: L{bytes} or L{unicode} @param domain: cookie domain @type domain: L{bytes} or L{unicode} @param path: cookie path @type path: L{bytes} or L{unicode} @param max_age: cookie expiration in seconds from reception @type max_age: L{bytes} or L{unicode} @param comment: cookie comment @type comment: L{bytes} or L{unicode} @param secure: direct browser to send the cookie on encrypted connections only @type secure: L{bool} @param httpOnly: direct browser not to expose cookies through channels other than HTTP (and HTTPS) requests @type httpOnly: L{bool} @param sameSite: One of L{None} (default), C{'lax'} or C{'strict'}. Direct browsers not to send this cookie on cross-origin requests. Please see: U{https://tools.ietf.org/html/draft-west-first-party-cookies-07} @type sameSite: L{None}, L{bytes} or L{unicode} @raises: L{DeprecationWarning} if an argument is not L{bytes} or L{unicode}. L{ValueError} if the value for C{sameSite} is not supported. c