I would need to know what is my final URL when following redirections using urllib in Python 3.
Let\'s say I\'ve some code like :
opener = urllib.req
You can simply use
u.geturl()
to get the URL you were redirected to (or the original one if no redirect happened).