আপনি অনুরোধের ইতিহাসটি সন্ধান করছেন ।
response.history
অ্যাট্রিবিউট প্রতিক্রিয়া যে চূড়ান্ত URL- এ পাওয়া যাবে যা নেতৃত্বে একটি তালিকা রয়েছে response.url
।
response = requests.get(someurl)
if response.history:
print("Request was redirected")
for resp in response.history:
print(resp.status_code, resp.url)
print("Final destination:")
print(response.status_code, response.url)
else:
print("Request was not redirected")
ডেমো:
>>> import requests
>>> response = requests.get('http://httpbin.org/redirect/3')
>>> response.history
(<Response [302]>, <Response [302]>, <Response [302]>)
>>> for resp in response.history:
... print(resp.status_code, resp.url)
...
302 http://httpbin.org/redirect/3
302 http://httpbin.org/redirect/2
302 http://httpbin.org/redirect/1
>>> print(response.status_code, response.url)
200 http://httpbin.org/get
urllib2