gpt4 book ai didi

python - 将 Curl "-I --user"转换为 Python 请求

转载 作者:太空狗 更新时间:2023-10-29 17:58:50 24 4
gpt4 key购买 nike

我正在尝试将 cURL 命令转换为 python,但我正在努力

curl -I --user username:password https://an.api.on.the.internet/

我目前的尝试是:

import requests
cur = requests.get('https://an.api.on.the.internet', auth='username:password')

谁能帮我转换一下?谢谢

最佳答案

使用

requests.get(url, auth=(username, password))

参见 Basic Authentication 部分在 requests 文档中。

关于python - 将 Curl "-I --user"转换为 Python 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18363556/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com