A byte-iterator over the decoded response content. This automatically handles gzip, deflate and brotli encoded responses.
(self, chunk_size: int | None = None)
| 449 | await self.http_response.aclose() |
| 450 | |
| 451 | async def iter_bytes(self, chunk_size: int | None = None) -> AsyncIterator[bytes]: |
| 452 | """ |
| 453 | A byte-iterator over the decoded response content. |
| 454 | |
| 455 | This automatically handles gzip, deflate and brotli encoded responses. |
| 456 | """ |
| 457 | async for chunk in self.http_response.aiter_bytes(chunk_size): |
| 458 | yield chunk |
| 459 | |
| 460 | async def iter_text(self, chunk_size: int | None = None) -> AsyncIterator[str]: |
| 461 | """A str-iterator over the decoded response content |
nothing calls this directly
no test coverage detected