How to get URL from Python requests response

0 votes

Hi. I made a get request using the requests module using the following:

>>> r = requests.get('<url>', params=payload)

When I type this in the browser and search, it returns a different url. The same happens with the above code but I want to get the newly returned url. How to get it from the response.

May 14, 2019 in Python by Sam
785 views

1 answer to this question.

0 votes

Once you get the response, you'll find the url in the response. Try this:

>>> r = requests.get('<url>', params=payload)
>>> print(r.url)
answered May 14, 2019 by Firoz

Related Questions In Python

0 votes
1 answer

How to get text label from SAP using pywinauto[python]

Hi. Can you please tell me what ...READ MORE

answered Jun 28, 2018 in Python by Nietzsche's daemon
• 4,260 points
2,497 views
0 votes
3 answers

How to get the return value from a thread using python?

FWIW, the multiprocessing module has a nice interface for ...READ MORE

answered Dec 15, 2020 in Python by Roshni
• 10,520 points
106,491 views