class documentation

class WWWAuthenticate(UpdateDictMixin, dict):

View In Hierarchy

Provides simple access to WWW-Authenticate headers.
Method __init__ Undocumented
Method __repr__ Undocumented
Method __str__ Undocumented
Method set​_basic Clear the auth info and enable basic auth.
Method set​_digest Clear the auth info and enable digest auth.
Method stale.setter Undocumented
Method to​_header Convert the stored values into a WWW-Authenticate header.
Class Variable algorithm Undocumented
Class Variable auth​_property Undocumented
Class Variable domain Undocumented
Class Variable nonce Undocumented
Class Variable opaque Undocumented
Class Variable qop Undocumented
Class Variable realm Undocumented
Class Variable type Undocumented
Instance Variable on​_update Undocumented
Property stale A flag, indicating that the previous request from the client was rejected because the nonce value was stale.
Class Variable ​_require​_quoting Undocumented

Inherited from UpdateDictMixin:

Method pop Undocumented
Method setdefault Undocumented
Class Variable __delitem__ Undocumented
Class Variable __setitem__ Undocumented
Class Variable clear Undocumented
Class Variable popitem Undocumented
Class Variable update Undocumented
def __init__(self, auth_type=None, values=None, on_update=None):

Undocumented

def __repr__(self):

Undocumented

def __str__(self):

Undocumented

def set_basic(self, realm='authentication required'):
Clear the auth info and enable basic auth.
def set_digest(self, realm, nonce, qop=('auth'), opaque=None, algorithm=None, stale=False):
Clear the auth info and enable digest auth.
@stale.setter
def stale(self, value):

Undocumented

def to_header(self):
Convert the stored values into a WWW-Authenticate header.
algorithm =

Undocumented

auth_property =

Undocumented

domain =

Undocumented

nonce =

Undocumented

opaque =

Undocumented

qop =

Undocumented

realm =

Undocumented

type =

Undocumented

on_update =
@property
stale =
A flag, indicating that the previous request from the client was rejected because the nonce value was stale.
_require_quoting =

Undocumented