导入beautifulsoup4的代码
时间: 2023-07-02 11:16:08 浏览: 63
beautifulsoup4-4.8.2.tar.gz
导入BeautifulSoup需要先安装BeautifulSoup库,你可以使用以下命令安装:
```
pip install beautifulsoup4
```
安装完成后,可以在Python代码中导入BeautifulSoup:
```
from bs4 import BeautifulSoup
```
接着,可以使用BeautifulSoup来解析HTML或XML文档。例如:
```
html = '<html><head><title>Example</title></head><body><p>Hello, World!</p></body></html>'
soup = BeautifulSoup(html, 'html.parser')
print(soup.title.string)
```
这个例子将一个HTML文档传递给BeautifulSoup的构造函数,然后使用soup.title.string来获取文档的标题内容,并将其打印到屏幕上。
阅读全文