我对 Python 很陌生。如何一起使用 BeautifulSoup 和 lxml?
Beautifulsoup 网站推荐使用 lxml 作为解析器
def get_html():
from bs4 import BeautifulSoup
import lxml
soup = BeautifulSoup(open("http://www.google.com"));
#print(soup.prettify());
print(soup.title);
if __name__ == '__main__':
get_html()