1
如何配置記錄到文件請求的獲取或發佈?Python請求記錄到文件
my_config = {'verbose': sys.stderr}
requests.get('http://httpbin.org/headers', config=my_config)
我應該在詳細內容中使用什麼?
如何配置記錄到文件請求的獲取或發佈?Python請求記錄到文件
my_config = {'verbose': sys.stderr}
requests.get('http://httpbin.org/headers', config=my_config)
我應該在詳細內容中使用什麼?
你試過簡單地打開一個文件嗎?
>>> import sys
>>> type(sys.stderr)
file
>>> f = open('test.log', 'w')
>>> type(f)
f
所以上面的例子看起來就像這樣:
my_config = { 'verbose': open('/path/to/file', 'w') }
requests.get('http://httpbin.org/headers', config = my_config)
HTH