gpt4 book ai didi

python - 打开 url 并检索更改的 url

转载 作者:太空宇宙 更新时间:2023-11-04 08:20:18 25 4
gpt4 key购买 nike

我想为例如- www.xyz.com

它是一个身份验证 url,点击后会在 url 栏上生成新的 url,例如www.xyz-11.com

如何从 python 中检索它?
调用 url 并获取新创建的 url?

最佳答案

>>> 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() — return the URL of the resource retrieved, commonly used to determine if a redirect was followed

关于python - 打开 url 并检索更改的 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6385263/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com