用于显示url的默认页面名称的Python代码

时间:2016-10-14 09:42:47

标签: url default

如果没有index.html,default.html页面,python中有没有办法显示www.xyz.com的默认初始页面?

例如,我正在尝试使用Beautiful Soup来执行以下操作:

from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen("http://www.example.com/index.html")
bsObj = BeautifulSoup(html.read())
print(bsObj.h1)

但index.html和default.html不存在。

当我访问www.example.com时,如何找出默认页面的内容?

1 个答案:

答案 0 :(得分:0)

您可以使用urlopen("http://www.example.com/"),这将打开网络服务器提供的默认页面。