http.cookiejar.Cookie.is_expired()

Cookie.is_expired(now=None) True if cookie has passed the time at which the server requested it should expire. If now is given (in seconds since the epoch), return whether the cookie has expired at the specified time.

http.cookiejar.Cookie.has_nonstandard_attr()

Cookie.has_nonstandard_attr(name) Return true if cookie has the named cookie-attribute.

http.cookiejar.Cookie.get_nonstandard_attr()

Cookie.get_nonstandard_attr(name, default=None) If cookie has the named cookie-attribute, return its value. Otherwise, return default.

http.cookiejar.Cookie.expires

Cookie.expires Integer expiry date in seconds since epoch, or None. See also the is_expired() method.

http.cookiejar.Cookie.domain_specified

Cookie.domain_specified True if a domain was explicitly specified by the server.

http.cookiejar.Cookie.domain_initial_dot

Cookie.domain_initial_dot True if the domain explicitly specified by the server began with a dot ('.').

http.cookiejar.Cookie.discard

Cookie.discard True if this is a session cookie.

http.cookiejar.Cookie.comment_url

Cookie.comment_url URL linking to a comment from the server explaining the function of this cookie, or None.

http.cookiejar.Cookie.comment

Cookie.comment String comment from the server explaining the function of this cookie, or None.

http.cookiejar.Cookie

class http.cookiejar.Cookie This class represents Netscape, RFC 2109 and RFC 2965 cookies. It is not expected that users of http.cookiejar construct their own Cookie instances. Instead, if necessary, call make_cookies() on a CookieJar instance.