请求 - 处理历史记录


您可以使用response.history获取给定 URL 的历史记录。如果给定的 URL 有任何重定向,则相同的内容将存储在历史记录中。

对于历史

import requests
getdata = requests.get('http://google.com/')
print(getdata.status_code)
print(getdata.history)  

输出

E:\prequests>python makeRequest.py
200
[<Response [301]>]

response.history属性将包含基于请求完成的响应对象的详细信息存在的值将从最旧的到最新的进行排序。response.history属性跟踪在请求的 URL 上完成所有重定向。