是否有一种方法可以使用日志记录模块在python over config参数上的请求库上启用详细模式?
这里是使用config的示例,但重定向到stderr。
my_config = {'verbose': sys.stderr}
requests.get('http://httpbin.org/headers', config=my_config)
2011-08-17T03:04:23.380175 GET http://httpbin.org/headers
Example from the documentation
我知道有一种使用调试日志记录here的方法,但想法是使用提供的新配置。