Metadata plugin: url when redirected?
Hello,
i'm wondering, if there's a chance to get the url of the actual page when redirected:
page = browser.open_novisit(url, timeout=timeout).read().strip()
soup = BeautifulSoup(page, 'html.parser')
actual_url = ???
In the Browser Object i can't see an appropiate method.
|