()
| 967 | |
| 968 | async def get_stream_response(request): |
| 969 | async def iterator(): |
| 970 | for chunk in self.sequence: |
| 971 | yield chunk |
| 972 | |
| 973 | resp = StreamingHttpResponse(iterator()) |
| 974 | resp["Content-Type"] = "text/html; charset=UTF-8" |
no outgoing calls
no test coverage detected