(ret2)
curl -X GET -H 'Accept: */*' -H 'Accept-Encoding: gzip, deflate' -H 'Connection: keep-alive' -H 'User-Agent: python-requests/2.23.0' --
compressed
https://www.baidu.com/
源码及参数说明
源码中to_curl有2个参数:compressed(默认为False),verify(默认为True):
CURL命令转为requests代码
github有一个curlconverter工具很好用:
https://github.com/NickCarneiro/curlconverter
实例1 使用node环境
如下curl命令:
curl --request POST --url https://open.workec.com/auth/accesstoken --header 'cache-control: no-cache' --header 'content-type: application/json' --data '{ 'appId': appId, 'appSecret': 'appSecret'}'
由于这个工具使用node.js写的,因从我们得使用npm安装它:
$ npm install --save curlconverter
安装完毕后创建一个名为 curl_test.js的测试文件,里面的内容如下:
var curlcon = require("curlconverter");
ret = curlcon.toPython("curl --request POST --url https://open.workec.com/auth/accesstoken --header 'cache-control: no-cache' --header 'content-type: application/json' --data '{ 'appId': appId, 'appSecret': 'appSecret'}'")
console.log(ret)
然后在终端执行
node curl_test.js
可以看到:终端打印出了转换后的结果。
实例2 使用项目提供的在线工具
还是实例1的curl命令,我们使用在线工具
转换为requests代码效果如下:
import requests
headers = {
'cache-control': 'no-cache',
'content-type': 'application/json',
data = '{ "appId": appId, "appSecret": "appSecret"}'
response = requests.post('https://open.workec.com/auth/accesstoken', headers=headers, data=data)
curl命令的常用参数参考
curl命令常用参数