idriss
Results
1
comments of
idriss
For `AsyncClient` I am guessing the workaround is: ```python class AsyncDisableCookieTransport(httpx.AsyncBaseTransport): def __init__(self, transport: httpx.AsyncBaseTransport): self.transport = transport async def handle_async_request(self, request: httpx.Request) -> httpx.Response: response = await self.transport.handle_async_request(request) response.headers.pop("set-cookie",...