Class HttpResponseBase
An HTTP response base class with dictionary-accessed headers.
Declaration
class HttpResponseBase
source linkDocumentation
This class doesn't handle content. It should not be used directly.
Use the HttpResponse and StreamingHttpResponse subclasses instead.
Methods
▶ def __init__(self, content_type=None, status=None, reason=None, charset=None, headers=None) Overrides
This method is overriden in:
@property
def charset(self)
▷ def charset(self, value) @charset.setter @charset.setter
def charset(
self,
value,
)
▷ def delete_cookie(self, key, path='/', domain=None, samesite=None) ▷ def get(self, header, alternate=None) ▷ def has_header(self, header) Case-insensitive check for a header.
▷ def make_bytes(self, value) Turn a value into a bytestring encoded in the output charset.
@property
def reason_phrase(self)
@reason_phrase.setter
def reason_phrase(
self,
value,
)
▶ def set_cookie(self, key, value='', max_age=None, expires=None, path='/', domain=None, ...) Set a cookie.
def set_cookie(
self,
key,
value='',
max_age=None,
expires=None,
path='/',
domain=None,
secure=False,
httponly=False,
samesite=None,
)
``expires`` can be:
- a string in the correct format,
- a naive ``datetime.datetime`` object in UTC,
- an aware ``datetime.datetime`` object in any time zone.
If it is a ``datetime.datetime`` object then calculate ``max_age``.
▷ def setdefault(self, key, value) Set a header unless it has already been set.
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def write(self, content) Overrides
This method is overriden in:
Overrides
This method is overriden in:
Subclasses
Reexports