Close the response and release the connection. Automatically called if the response body is read to completion.
(self)
| 461 | return self.http_response.json() |
| 462 | |
| 463 | async def close(self) -> None: |
| 464 | """Close the response and release the connection. |
| 465 | |
| 466 | Automatically called if the response body is read to completion. |
| 467 | """ |
| 468 | await self.http_response.aclose() |
| 469 | |
| 470 | async def iter_bytes(self, chunk_size: int | None = None) -> AsyncIterator[bytes]: |
| 471 | """ |