Manually set the underlying httpx.Client **NOTE**: This will override any other settings on the client, including cookies, headers, and timeout.
(self, client: httpx.Client)
| 80 | return evolve(self, timeout=timeout) |
| 81 | |
| 82 | def set_httpx_client(self, client: httpx.Client) -> "Client": |
| 83 | """Manually set the underlying httpx.Client |
| 84 | |
| 85 | **NOTE**: This will override any other settings on the client, including cookies, headers, and timeout. |
| 86 | """ |
| 87 | self._client = client |
| 88 | return self |
| 89 | |
| 90 | def get_httpx_client(self) -> httpx.Client: |
| 91 | """Get the underlying httpx.Client, constructing a new one if not previously set""" |
nothing calls this directly
no outgoing calls
no test coverage detected