修复代理为空的问题

This commit is contained in:
glide-the 2023-10-04 13:33:42 +08:00
parent e88d926bbb
commit a655608d01
1 changed files with 6 additions and 4 deletions

View File

@ -506,10 +506,11 @@ def get_httpx_client(
default_proxies.update({host: None}) default_proxies.update({host: None})
# get proxies from system envionrent # get proxies from system envionrent
# proxy not str empty string, None, False, 0, [] or {}
default_proxies.update({ default_proxies.update({
"http://": os.environ.get("http_proxy"), "http://": os.environ.get("http_proxy") if len(os.environ.get("http_proxy").strip()) > 0 else None,
"https://": os.environ.get("https_proxy"), "https://": os.environ.get("https_proxy") if len(os.environ.get("https_proxy").strip()) > 0 else None,
"all://": os.environ.get("all_proxy"), "all://": os.environ.get("all_proxy") if len(os.environ.get("all_proxy").strip()) > 0 else None,
}) })
for host in os.environ.get("no_proxy", "").split(","): for host in os.environ.get("no_proxy", "").split(","):
if host := host.strip(): if host := host.strip():
@ -524,6 +525,7 @@ def get_httpx_client(
# construct Client # construct Client
kwargs.update(timeout=timeout, proxies=default_proxies) kwargs.update(timeout=timeout, proxies=default_proxies)
print(kwargs)
if use_async: if use_async:
return httpx.AsyncClient(**kwargs) return httpx.AsyncClient(**kwargs)
else: else: