2012-09-18 58 views
1

如何配置記錄到文件請求的獲取或發佈?Python請求記錄到文件

my_config = {'verbose': sys.stderr} 
requests.get('http://httpbin.org/headers', config=my_config) 

我應該在詳細內容中使用什麼?

回答

1

你試過簡單地打開一個文件嗎?

>>> 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