class HttpResponseBase:
Known subclasses: django.http.HttpResponse
, django.http.StreamingHttpResponse
An HTTP response base class with dictionary-accessed headers.
This class doesn't handle content. It should not be used directly. Use the HttpResponse and StreamingHttpResponse subclasses instead.
Method | __delitem__ |
Undocumented |
Method | __getitem__ |
Undocumented |
Method | __init__ |
Undocumented |
Method | __setitem__ |
Undocumented |
Method | charset.setter |
Undocumented |
Method | close |
Undocumented |
Method | delete_cookie |
Undocumented |
Method | flush |
Undocumented |
Method | get |
Undocumented |
Method | has_header |
Case-insensitive check for a header. |
Method | items |
Undocumented |
Method | make_bytes |
Turn a value into a bytestring encoded in the output charset. |
Method | readable |
Undocumented |
Method | reason_phrase.setter |
Undocumented |
Method | seekable |
Undocumented |
Method | serialize_headers |
HTTP headers as a bytestring. |
Method | set_cookie |
Set a cookie. |
Method | set_signed_cookie |
Undocumented |
Method | setdefault |
Set a header unless it has already been set. |
Method | tell |
Undocumented |
Method | writable |
Undocumented |
Method | write |
Undocumented |
Method | writelines |
Undocumented |
Instance Variable | _charset |
Undocumented |
Instance Variable | _handler_class |
Undocumented |
Instance Variable | _reason_phrase |
Undocumented |
Instance Variable | _resource_closers |
Undocumented |
Instance Variable | closed |
Undocumented |
Instance Variable | cookies |
Undocumented |
Instance Variable | headers |
Undocumented |
Instance Variable | status_code |
Undocumented |
Property | _content_type_for_repr |
Undocumented |
Property | charset |
Undocumented |
Property | reason_phrase |
Undocumented |
django.http.HttpResponse
, django.http.StreamingHttpResponse
Undocumented
Set a cookie.
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.
django.http.HttpResponseBadRequest
, django.http.HttpResponseForbidden
, django.http.HttpResponseGone
, django.http.HttpResponseNotAllowed
, django.http.HttpResponseNotFound
, django.http.HttpResponseNotModified
, django.http.HttpResponsePermanentRedirect
, django.http.HttpResponseRedirect
, django.http.HttpResponseServerError
Undocumented