python - 打开网址并检索更改的网址

时间:2011-06-17 11:44:38

标签: python url urllib

我想拨打网址,例如 - www.xyz.com

点击之后的身份验证网址会在网址栏上生成新的网址,例如www.xyz-11.com

如何从python中检索这个?
调用网址并获取新创建的网址?

1 个答案:

答案 0 :(得分:6)

>>> import urllib2
>>> u = urllib2.urlopen('http://google.com')
>>> dir(u)  # useful in seeing what's there, see also help(u)
['__doc__', '__init__', '__iter__', '__module__', '__repr__', 'close', 'code', 'fileno', 'fp', 'getcode', 'geturl', 'headers', 'info', 'msg', 'next', 'read', 'readline', 'readlines', 'url']
>>> u.geturl()
'http://www.google.com.au/'
>>> u.url
'http://www.google.com.au/'

另见the documentation for urllib2.urlopen;

  
      
  • geturl() - 返回检索到的资源的网址,通常用于确定是否遵循重定向
  •