谷歌浏览器请求头格式化输出成 python dict字典

因为经常使用head头去请求网站,每次复制太麻烦,写了个util方法,记录一下。
只需要把谷歌请求头复制下来把heads替换掉就能用

heads = '''
:authority: www.zhihu.com
:method: GET
:path: /question/425294181
:scheme: https
accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
accept-encoding: gzip, deflate, br
accept-language: zh-CN,zh;q=0.9
cache-control: no-cache
cookie: xxxxxxx
pragma: no-cache
sec-fetch-dest: document
sec-fetch-mode: navigate
sec-fetch-site: cross-site
sec-fetch-user: ?1
upgrade-insecure-requests: 1
user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36
'''

def show():
    h = heads.split('\n')
    for s in h:
        if(s[0:1] == ':'):
            spli = s[1:].split(": ")
            print("'%s': '%s'" % (spli[0], spli[1]))
        else:
            spli = s.split(": ")
            if(len(spli) != 1):
                print("'%s': '%s'" % (spli[0], spli[1]))


if __name__ == '__main__':
    show()

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值