def fetchConfig(url):
# Get fetch config settings for httpclient for proxy
u = urlparse(url)
if u.scheme in proxies:
if u.hostname not in proxies.get("noProxy", []):
return proxies[u.scheme]
return {}
评论列表
文章目录