python安装bs4
时间: 2023-09-11 07:09:11 浏览: 94
Python安装Bs4的多种方法
您可以通过以下步骤在Python中安装bs4:
1. 打开命令提示符或终端窗口。
2. 输入以下命令:pip install beautifulsoup4
3. 按下Enter键,等待安装过程完成。
4. 确认安装完成后,您可以在Python代码中导入bs4模块并使用它的功能。
例如,下面的代码段演示了如何使用bs4从HTML文档中提取所有链接:
```
from bs4 import BeautifulSoup
import requests
url = 'https://www.example.com'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
links = []
for link in soup.find_all('a'):
links.append(link.get('href'))
print(links)
```
阅读全文