使用webbrowser打开网页后如何访问html

时间:2018-07-25 15:10:34

标签: python python-webbrowser

我想知道使用webbrowser库打开网页后是否可以访问网页的html或正文?

import webbrowser

url = "https://testwebsite.com/"
chromePath = "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s"
testing = webbrowser.get(chromePath).open(url)
print(testing)

这可以正常工作并进入网页,但由于是布尔值,因此会打印True / False。无论如何,要使其打印出该网站的html或正文吗?

1 个答案:

答案 0 :(得分:-1)

要使用python获取网页内容,可以使用urllib

import urllib
googleContent = urllib.urlopen("http://google.com").read()

google.com的内容保存在变量googleContent中。