python 执行系统命令(curl)_curl请求python作为命令行

目前,我正在尝试将curl请求转换为python脚本。

curl $(curl -u username:password -s https://api.example.com/v1.1/reports/11111?fields=download | jq ".report.download" -r) > "C:\sample.zip"

由于知识的限制,我试过pycurl,但没有成功。

import os

os.system("curl -K.........")

以及使用子流程的其他解决方案(基于更常见的搜索)

import subprocess

subprocess.call(['command', 'argument'])

目前,我不知道该搬到哪里,以及如何适应我的位置。

import os

os.system("curl $(curl -u username:password -s https://api.example.com/v1.1/reports/11111?fields=download | jq '.report.download' -r) > 'C:\sample.zip'")

'curl' is not recognized as an internal or external command,

operable program or batch file.

255

P.S.-更新v1

有什么建议吗?

import requests

response = requests.get('https://api.example.com/v1.1/reports/11111?fields=download | jq ".report.download" -r', auth=('username', 'password'))

这个作品没有“

| jq ".report.download

“这一部分,但这是主要部分,在最后只提供下载文件的链接。

有办法吗?

你可能感兴趣的:(python,执行系统命令(curl))