gpt4 book ai didi

python - 在 Python 中,如何检查 2 个不同的链接是否实际指向同一页面?

转载 作者:太空宇宙 更新时间:2023-11-03 12:22:20 26 4
gpt4 key购买 nike

最佳答案

urllib2.urlopen() 的结果调用 geturl()geturl()“返回检索到的资源的 URL,通常用于确定是否遵循了重定向。”

例如:

#!/usr/bin/env python
# coding: utf-8

import urllib2

url1 = 'http://www.independent.co.uk/life-style/gadgets-and-tech/news/chinese-blamed-for-gmail-hacking-2292113.html'
url2 = 'http://www.independent.co.uk/life-style/gadgets-and-tech/news/2292113.html'

for url in [url1, url2]:
result = urllib2.urlopen(url)
print result.geturl()

输出是:

http://www.independent.co.uk/life-style/gadgets-and-tech/news/chinese-blamed-for-gmail-hacking-2292113.html
http://www.independent.co.uk/life-style/gadgets-and-tech/news/chinese-blamed-for-gmail-hacking-2292113.html

关于python - 在 Python 中,如何检查 2 个不同的链接是否实际指向同一页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6220407/

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