Python請求通常用於從特定資源URI中獲取內容。每當我們通過Python向指定URI發出請求時,它都會返回一個響應對象。現在,此響應對象將用於訪問某些函數,例如內容,標頭等。本文圍繞如何從響應對象中檢查response.header展開討論。 response.headers返回響應頭的字典。要檢查有關標頭的更多信息,請訪問-不同的HTTP標頭
如何使用Python請求使用response.headers?
為了說明response.headers的用法,讓我們ping Github的API。要運行此腳本,您需要在PC上安裝Python和請求。
先決條件-
示例代碼-
# import requests module
import requests
# Making a get request
response = requests.get('https://api.github.com')
# print response
print(response)
# print headers of response
print(response.headers)
示例實現-
將以上文件另存為request.py
並使用
Python request.py
輸出-
檢查輸出開始處的標題是否顯示了不同的標題。標頭用於不同的目的,例如身份驗證/從服務器傳遞和檢索數據等。
先進概念
使用Python發出HTTP請求的庫有很多,例如httplib,urllib,httplib2,treq等,但是請求是具有出色函數的最好的庫之一。如果請求的任何屬性顯示為NULL,請使用以下屬性檢查狀態代碼。
requests.status_code
如果status_code不在200-29範圍內。您可能需要檢查開始用於請求的方法+您正在請求的URL的資源。
相關用法
- Python response.ok用法及代碼示例
- Python response.url用法及代碼示例
- Python response.json()用法及代碼示例
- Python response.iter_content()用法及代碼示例
- Python response.is_redirect用法及代碼示例
- Python response.is_permanent_redirect用法及代碼示例
- Python response.history用法及代碼示例
- Python response.request用法及代碼示例
- Python response.reason用法及代碼示例
- Python response.status_code用法及代碼示例
- Python response.text用法及代碼示例
- Python response.raise_for_status()用法及代碼示例
注:本文由純淨天空篩選整理自NaveenArora大神的英文原創作品 response.headers – Python requests。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。