A byte-iterator over the decoded response content. This automatically handles gzip, deflate and brotli encoded responses.
(self, chunk_size: int | None = None)
| 468 | await self.http_response.aclose() |
| 469 | |
| 470 | async def iter_bytes(self, chunk_size: int | None = None) -> AsyncIterator[bytes]: |
| 471 | """ |
| 472 | A byte-iterator over the decoded response content. |
| 473 | |
| 474 | This automatically handles gzip, deflate and brotli encoded responses. |
| 475 | """ |
| 476 | async for chunk in self.http_response.aiter_bytes(chunk_size): |
| 477 | yield chunk |
| 478 | |
| 479 | async def iter_text(self, chunk_size: int | None = None) -> AsyncIterator[str]: |
| 480 | """A str-iterator over the decoded response content |
nothing calls this directly
no test coverage detected