* Treat `socks5h` as a valid proxy scheme. (#3178) ## 0.27.2 (27th August, 2024) 2 changes: 1 addition & 1 deletion 2 httpx/_config.py Original file line numberDiff line numberDiff line change @@ -262,7 +262,7 @@ def __init__( url = URL(url) headers = Headers(headers...
httpx-socks Thehttpx-sockspackage provides proxy transports forhttpxclient. SOCKS4(a), SOCKS5(h), HTTP (tunneling) proxy supported. It usespython-socksfor core proxy functionality. Requirements Python >= 3.6 httpx>=0.21.0 python-socks>=2.0.0 async-timeout>=3.0.1 (optional) trio>=0.16.0 (...
Thehttpx-sockspackage provides proxy transports forhttpxclient. SOCKS4(a), SOCKS5(h), HTTP (tunneling) proxy supported. It usespython-socksfor core proxy functionality. Requirements Python >= 3.6 httpx>=0.21.0 python-socks>=2.0.0 async-timeout>=3.0.1 (optional) ...
zsh: no matches found: httpx[socks] 错误信息意味着 shell 在尝试进行文件名扩展或模式匹配时,没有找到任何与 httpx[socks] 相匹配的项。这通常发生在用户尝试访问或执行一个命令或文件时,但 zsh 没有在指定路径下找到任何符合该模式的命令或文件。 分析可能导致这个错误的原因 命令或文件不存在:httpx[socks] ...
Treatsocks5has a valid proxy scheme. (add socks5h proxy support#3178) CleanupRequest()method signature in line withclient.request()andhttpx.request(). (CleanupRequestmethod parameter.#3378)
JSON request bodies use a compact representation. (#3363) Review URL percent escape sets, based on WHATWG spec. (#3371,#3373) Ensurecertifiandhttpcoreare only imported if required. (#3377) Treatsocks5has a valid proxy scheme. (#3178) ...
JSON request bodies use a compact representation. (#3363) Review URL percent escape sets, based on WHATWG spec. (#3371,#3373) Ensurecertifiandhttpcoreare only imported if required. (#3377) Treatsocks5has a valid proxy scheme. (#3178) ...
Treatsocks5has a valid proxy scheme. (#3178) CleanupRequest()method signature in line withclient.request()andhttpx.request(). (#3378) Sourced fromhttpx[http2]'s changelog. 0.28.0 (28th November, 2024) The 0.28 release includes a limited set of deprecations. ...
(scheme=u.raw_scheme, host=u.raw_host, port=u.port, target="/") def test_socks_proxy(): url = httpx.URL("http://www.example.com") for proxy in ("socks5://localhost/", "socks5h://localhost/"): client = httpx.Client(proxy=proxy) transport = client._transport_for_...