python 将requests转为curl命令行格式

python 将requests转为curl命令行格式,第1张

python 将requests转为curl命令行格式

将python的requests请求转为curl命令行格式, 方便调试

import curlify
import requests


data = {
    "wd": "hello"
}

url = 'http://www.baidu.com/s'

response = requests.get(url=url, data=data, headers={
    'Accept': 'text/html,application/xhtml+xml',
})

print(curlify.to_curl(response.request))

执行结果:

$ python3 a.py
curl -X GET -H 'Accept: text/html,application/xhtml+xml' -H 'Accept-Encoding: gzip, deflate' -H 'Connection: keep-alive' -H 'Content-Length: 8' -H 'Content-Type: application/x-www-form-urlencoded' -H 'User-Agent: python-requests/2.25.1' -d wd=hello http://www.baidu.com/s

(完)

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5680226.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存