使用 Python 查找主域
Finding primary domain using Python
我正在尝试找到一种方法来查找网站的主域。
例如:如果您访问www.yalochat.com the browser automatically changes the address to www.yalo.com。因此:
输入:www.yalochat.com
输出:www.yalo.com
输入:www.yalo.com
输出:www.yalo.com
有什么建议吗?
谢谢!
您可以使用请求模块实现此目的,如下所示:
import requests
with requests.Session() as s:
r = s.get('https://www.yalochat.com')
r.raise_for_status()
print(r.url)
我正在尝试找到一种方法来查找网站的主域。
例如:如果您访问www.yalochat.com the browser automatically changes the address to www.yalo.com。因此:
输入:www.yalochat.com 输出:www.yalo.com
输入:www.yalo.com 输出:www.yalo.com
有什么建议吗?
谢谢!
您可以使用请求模块实现此目的,如下所示:
import requests
with requests.Session() as s:
r = s.get('https://www.yalochat.com')
r.raise_for_status()
print(r.url)