2👍
✅
The Location
header will hold the URL that you are being redirected to:
print response.getheader('location')
If you want to see the actual page that was sent with the 303 (if there was one), read the response object as usual:
contents = response.read()
Source:stackexchange.com