response¶
Summary¶
|
A dataclass containing cached response information, used for serialization. |
|
A StreamReader loaded from previously consumed response content. |
|
|
Module Contents¶
- class CachedResponse(method, reason, status, url, version, body=b'', content=None, links=NOTHING, cookies=NOTHING, created_at=NOTHING, encoding='utf-8', expires=None, raw_headers=NOTHING, real_url=None, history=NOTHING, last_used=NOTHING)¶
Bases:
HeadersMixin
A dataclass containing cached response information, used for serialization. It will mostly behave the same as a
aiohttp.ClientResponse
that has been read, with some additional cache-related info.- Parameters:
- close()¶
- property connection¶
-
property content:
aiohttp.StreamReader
¶
-
property content_disposition:
aiohttp.ContentDisposition
| None¶ Get Content-Disposition headers, if any
- cookies: SimpleCookie¶
- created_at: datetime¶
- encoding: str¶
- expires: datetime | None¶
- property from_cache¶
- async classmethod from_client_response(client_response, expires=None)¶
Convert a ClientResponse into a CachedResponse
- Parameters:
client_response (
ClientResponse
)
- get_encoding()¶
- property headers: CIMultiDictProxy[str]¶
Get headers as an immutable, case-insensitive multidict from raw headers
- history: tuple¶
- async json(encoding=None, **kwargs)¶
Read and decode JSON response
- last_used: datetime¶
- property links: MultiDictProxy¶
Convert stored links into the format returned by
ClientResponse.links
- method: str¶
- raise_for_status()¶
- raw_headers: RawHeaders¶
- real_url: StrOrURL¶
- reason: str¶
- release()¶
-
property request_info:
aiohttp.RequestInfo
¶
- reset()¶
Reset the stream reader to re-read a streamed response
- async start()¶
- status: int¶
- async terminate()¶
- async text(encoding=None, errors='strict')¶
Read response payload and decode
- url: URL¶
- version: str¶
- async wait_for_close()¶
- class CachedStreamReader(body=None)¶
Bases:
StreamReader
A StreamReader loaded from previously consumed response content. This feeds cached data into the stream so it can support all the same behavior as the original stream: async iteration, chunked reads, etc.
- set_response_defaults(response)¶