Seth Michael Larson
Seth Michael Larson
Yeah the timing is unfortunate because the last two weeks I've changed job, moved to a new apartment, and traveled out of town. Not a lot of time for open...
BTW the verify=SSLContext() interface for SSLConfig is functional in master.
Actually in master TLSv1.2 and TLSv1.3 are already the only available protocols. :) But let's say you only want ECDHE+AESGCM for ciphers you can do: ```python import httpx, ssl ctx...
Just an FYI to everyone in this thread, HTTPX now ships with HTTP proxy support. :)
HTTPX 0.7.3 supports the `proxies` parameter and `HTTP_PROXY`, `HTTPS_PROXY`, and `ALL_PROXY` environment variables. It should be testable so any defects you find should be reported as bugs. :) See documentation...
That seems acceptable to me.
Really this method should be `is_valid_uri_reference()`, but each of these are valid URI references. ```python # A no-scheme path with zero extra segments >>> rfc3986.uri_reference('1') URIReference(scheme=None, authority=None, path='1', query=None, fragment=None)...
@bugeats All of those examples pass the validation check because `URIReference.from_string()` does normalization which converts characters within components that can be percent-encoded into their percent-encoded counterparts before calling `is_valid()` (Meaning...
Or just remove it, it's been deprecated for a few releases.
There's already a section called "Testimonials", can we extend the usefulness of that section by changing it to "testimonials and related projects"? Also the release date, etc isn't relevant to...