class documentation

class StreamingHttpResponse(HttpResponseBase):

Known subclasses: django.http.FileResponse

View In Hierarchy

A streaming HTTP response class with an iterator as content.

This should only be iterated once, when the response is streamed to the client. However, it can be appended to or replaced with a new iterator that wraps the original content (or yields entirely new content).

Class Variable streaming Undocumented
Method __init__ Undocumented
Method __iter__ Undocumented
Method __repr__ Undocumented
Method ​_set​_streaming​_content Undocumented
Method getvalue Undocumented
Method streaming​_content.setter Undocumented
Instance Variable ​_iterator Undocumented
Property content Undocumented
Property streaming​_content Undocumented

Inherited from HttpResponseBase:

Method __delitem__ Undocumented
Method __getitem__ 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
streaming: bool =

Undocumented

def __init__(self, streaming_content=(), *args, **kwargs):
def __iter__(self):

Undocumented

def __repr__(self):

Undocumented

def _set_streaming_content(self, value):

Undocumented

def getvalue(self):

Undocumented

@streaming_content.setter
def streaming_content(self, value):

Undocumented

_iterator =

Undocumented

@property
content =

Undocumented

@property
streaming_content =

Undocumented