如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import json headers = """ Host: zhan.qq.com Proxy-Connection: keep-alive Content-Length: 799432 Pragma: no-cache Cache-Control: no-cache Origin: http://zhan.qq.com User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryuptjZg9xmsfWzngP Accept: */* Referer: http://zhan.qq.com/edit/site/beta/2005406545/index.html?164097 Accept-Encoding: gzip, deflate Accept-Language: zh-CN,zh;q=0.9,en;q=0.8 Cookie: pgv_pvi=4342937600; RK=xFr4lrf07R; ptcz=a247c6170fb56cb4d5d41bf8461f11097a9be27bc7e7dc8b921254de9b1c924b; """ # 去除参数头尾的空格并按换行符分割 headers = headers.strip().split( '\n' ) # 使用字典生成式将参数切片重组,并去掉空格,处理带协议头中的:// headers = {x.split( ':' )[ 0 ].strip(): (" ".join(x.split(':')[1:])).strip().replace('//', " : / / ") for x in headers} # 使用json模块将字典转化成json格式打印出来 print (json.dumps(headers,indent = 1 )) |
以上这篇使用python将请求的requests headers参数格式化方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/weixin_41164823/article/details/80524100