Kar Petrosyan
Kar Petrosyan
Should we provide low-level proxy_ssl_context access rather than high-level verify, certs arguments?
Here are some questions to help us figure out where the issue is: - Have you tried using another HTTP client? - Have you tried [trio](https://github.com/python-trio/trio) instead of asyncio? -...
If you decide to use Hishel, I can issue a PR that adds Hishel.
[Here is](https://github.com/encode/httpx/discussions/2635#discussioncomment-5986869) the `socket_options` example that we might want to use here.
I have added an example for the `socket_options` parameter. I believe we are now ready to merge this PR.
Maybe we should also add a changelog
Hi! Perhaps you could remove the Set-Cookie header before it reaches the client instance? Example: ``` python import httpx class DisableCookieTransport(httpx.BaseTransport): def __init__(self, transport: httpx.BaseTransport): self.transport = transport def handle_request(self,...
I think we are going too far with encapsulating arguments :d
Yes, I agree that removing them completely is not what the user expects. However, I believe migration is simple enough to skip that stage in order to avoid making that...
> Okay, shall we take the docs from this comment... [#3007 (comment)](https://github.com/encode/httpx/discussions/3007#discussioncomment-7872119) and include them in the PR? I like it