以下是我的示例代码:
http.debuglevel=1
...
response, content = conn.request(target,method,body,headers)
print response
这是我在调试中的结果(注意我刚刚在这里留下几行)
reply: 'HTTP/1.1 200 OK\r\n'
header: Pragma: no-cache
header: Content-Type: application/octet-stream
header: Content-Encoding: gzip
header: Content-Length: 18480
...
...
这是print.response结果(注意我刚刚在这里留下几行)
{
'status': '200',
'content-length': '55559',
'-content-encoding': 'gzip',
'pragma': 'no-cache',
'content-type': 'application/octet-stream'
...
...
}
所以我的问题是: