Python請求通常用於從特定資源URI中獲取內容。每當我們通過Python向指定URI發出請求時,它都會返回一個響應對象。現在,該響應對象將用於訪問某些函數,例如內容,標頭等。本文圍繞如何檢查響應進行說明。 response.elapsed返回一個timedelta對象,其中包含從發送請求到響應到達所經過的時間。它通常用於在某個時間點“elapsed”之後停止連接。
如何使用通過Python請求傳遞的response.elapsed?
為了說明對response.elapsed的使用,讓我們ping Github的API。要運行此腳本,您需要在PC上安裝Python和請求。
先決條件-
示例代碼-
response.elapsed
# import requests module
import requests
# Making a get request
response = requests.get('https://api.github.com')
# print response
print(response)
# print elapsed time
print(response.elapsed)
示例實現-
將以上文件另存為request.py
並使用
Python request.py
輸出-
在輸出開始時檢查0:00:00.347420,它顯示自發出請求以來經過的時間。
先進概念
使用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.elapsed – Python requests。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。