地方エンジニアの学習日記

興味ある技術の雑なメモだったりを書いてくブログ。たまに日記とガジェット紹介。

python requestのリファレンス

pythonで使うrequestsのリファレンス

import requests

url = "http://test.com"
r = requests.get(url)

# ステータスコードをみる
print(r.status_code)

# テキストのステータスメッセージ
print(r.reason)

# HTTPレスポンスヘッダー
print(r.headers)

# リクエスト情報
print(r.request)

# HTTPリクエストヘッダー
print(r.request.headers)