Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
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))
ドキュメントの基本認証に関するセクションを参照してくださいrequests。
requests