class documentation

class ResponseStream: (source)

View In Hierarchy

A file descriptor like object used by :meth:`Response.stream` to represent the body of the stream. It directly pushes into the response iterable of the response object.

Method __init__ Undocumented
Method close Undocumented
Method flush Undocumented
Method isatty Undocumented
Method tell Undocumented
Method write Undocumented
Method writelines Undocumented
Class Variable mode Undocumented
Instance Variable closed Undocumented
Instance Variable response Undocumented
Property encoding Undocumented
def __init__(self, response: Response): (source)

Undocumented

def close(self): (source)

Undocumented

def flush(self): (source)

Undocumented

def isatty(self) -> bool: (source)

Undocumented

def tell(self) -> int: (source)

Undocumented

def write(self, value: bytes) -> int: (source)

Undocumented

def writelines(self, seq: t.Iterable[bytes]): (source)

Undocumented

Undocumented

Undocumented

response = (source)

Undocumented

Undocumented