使用python将请求的requests headers参数格式化方法

作者:阿力多多 时间:2021-06-12 07:22:49 

如下所示:


import json

# 使用三引号将浏览器复制出来的requests headers参数赋值给一个变量
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))

来源:https://blog.csdn.net/weixin_41164823/article/details/80524100

标签:python,requests,headers
0
投稿

猜你喜欢

  • 5款最强且免费的Python IDE小结

    2022-12-07 05:25:19
  • java如何用正则表达式匹配与提取字符串

    2023-03-13 07:47:13
  • MySQL中使用SHOW PROFILE命令分析性能的用法整理

    2024-01-13 00:14:41
  • Python pandas 列转行操作详解(类似hive中explode方法)

    2021-02-18 15:12:31
  • Spring+MyBatis实现数据库读写分离方案

    2024-01-23 03:05:36
  • python中使用.py配置文件的方法详解

    2022-02-13 19:57:22
  • Gradio机器学习模型快速部署工具quickstart

    2023-06-30 01:09:52
  • python递归下载文件夹下所有文件

    2023-08-07 07:21:55
  • 根据选择的checkbox列出选择的值

    2008-07-30 12:56:00
  • 详解Windows下源码编译PaddlePaddle

    2022-07-06 00:22:09
  • python粘包问题及socket套接字编程详解

    2021-03-25 05:58:46
  • 详解python异步编程之asyncio(百万并发)

    2022-05-09 04:44:12
  • 在WordPress的后台中添加顶级菜单和子菜单的函数详解

    2024-05-13 09:25:12
  • 跟老齐学Python之关于类的初步认识

    2022-11-04 15:49:36
  • python 绘制场景热力图的示例

    2022-01-22 07:03:21
  • ASP 包含文件中的路径问题和使用单一数据库连接文件的解决方案

    2011-04-07 10:35:00
  • 在Python中使用dict和set方法的教程

    2023-12-20 20:29:07
  • SQL2005 大数据量检索的分页

    2024-01-25 23:24:46
  • Python基于pandas爬取网页表格数据

    2023-03-13 07:30:32
  • Python多层装饰器用法实例分析

    2023-08-20 07:34:35
  • asp之家 网络编程 m.aspxhome.com