Source code for jivago.wsgi.request.streaming_response_body

from typing import Iterable


[docs] class StreamingResponseBody(object): def __init__(self, iterable: Iterable[bytes]): self.iterable = iterable