将lxml的网页解析方式改为BeautifulSoup4方式
时间: 2024-05-19 22:15:29 浏览: 85
beautifulsoup4-4.9.0.tar.gz
好的,你可以使用下面的代码将lxml的网页解析方式改为BeautifulSoup4方式:
from bs4 import BeautifulSoup
import requests
url = 'http://example.com'
html = requests.get(url).text
soup = BeautifulSoup(html, 'html.parser')
print(soup.prettify())
阅读全文