我想知道使用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或正文吗?
答案 0 :(得分:-1)
要使用python获取网页内容,可以使用urllib
。
import urllib
googleContent = urllib.urlopen("http://google.com").read()
将google.com
的内容保存在变量googleContent
中。