Let us assume that you have a feed with links that all point to redirected pages. By default Calibre does not handle this case so the safest way of doing this could be summarized like this:
	Code:
	    def print_version(self, url):
        return self.browser.open_novisit(url).geturl()
 Of course similar thing can be done with urllib2 but using internal browser automatically adds support for sites that require login.