curl的Python版本--输出

Posted

技术标签:

【中文标题】curl的Python版本--输出【英文标题】:Python version for curl --output 【发布时间】:2022-01-20 15:07:25 【问题描述】:

我有一个 GitLab API (v4),我需要调用它来获取项目子目录(v.14.4 中显然是新的东西,似乎还没有包含 python-gitlab 库),在 curl 中可以使用以下命令:

curl --header "PRIVATE-TOKEN: A_Token001" http://192.168.156.55/api/v4/projects/10/repository/archive?path=ProjectSubDirectory --output ~./temp/ProjectSubDirectory.tar.gz

问题在最后一部分,--output ~./GitLab/some_project_files/ProjectSubDirectory.tar.gz

我尝试了不同的方法(.content、.text),但都失败了,如:

...
response = requests.get(url=url, headers=headers, params=params).content
# and save the respon content with with open(...)

但在所有情况下,它都保存了无效的 tar.gz 文件或其他问题。

我什至尝试过https://curlconverter.com/,但它生成的代码也不能正常工作,似乎恰好忽略了 --output 参数,没有显示文件本身的任何内容:

headers = 'PRIVATE-TOKEN': 'A_Token001',
params = (('path', 'ProjectSubDirectory'),)
response = requests.get('http://192.168.156.55/api/v4/projects/10/repository/archive', headers=headers, params=params)

目前,我只是创建了一个脚本并使用子进程调用它,但我不太喜欢这种方法,因为 Python 有库,作为请求,我想应该有一些方法来做同样的事情。 .

【问题讨论】:

您到底是如何使用open 的?默认情况下,它以文本(不是二进制)模式打开文件,这意味着您的 Gzip 文件在编写时会受到很多不受欢迎的编码。 response.contet 应该给你二进制数据docs.python-requests.org/en/latest/user/quickstart/… 【参考方案1】:

两个关键的东西。

    允许重定向 在写入文件之前使用raise_for_status() 确保请求成功。这将有助于发现其他潜在问题,例如身份验证失败。

然后将response.content写入以二进制模式打开的文件以进行写入('wb'

import requests
url = "https://..."
headers =  # ...
paramus =  # ...
output_path = 'path/to/local/file.tar.gz'
response = requests.get(url, headers=headers, params=params, allow_redirects=True)
response.raise_for_status() # make sure the request is successful
with open(output_path, 'wb') as f:
    f.write(response.content)

【讨论】:

以上是关于curl的Python版本--输出的主要内容,如果未能解决你的问题,请参考以下文章

【nexus】用curl调用服务API对输出json的处理

python 使用不同的版本之间的切换

如何利用cURL和python对服务端和web端进行接口测试

python自动化模块之实践一

python requests请求指定IP的域名

Python 多版本管理利器 pythonbrew