requests.session之set trust_env to disable environment searches for proxies
Posted 知行Lee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了requests.session之set trust_env to disable environment searches for proxies相关的知识,希望对你有一定的参考价值。
import requests
s = requests.Session()
s.trust_env = False
This will prevent requests getting any information from its environment: specifically, it‘ll disable environment searches for proxies and for certificate bundles.
参考:
Proxy bypass detection could add delay of ~4.5 seconds to each request
以上是关于requests.session之set trust_env to disable environment searches for proxies的主要内容,如果未能解决你的问题,请参考以下文章