jupyter notebook爬虫样例
时间: 2024-04-13 09:24:06 浏览: 158
jupyter notebook安装.docx
Jupyter Notebook是一个非常方便的交互式编程环境,可以用于编写和运行Python代码。下面是一个简单的Jupyter Notebook爬虫样例:
```python
import requests
from bs4 import BeautifulSoup
# 发送HTTP请求获取网页内容
url = "https://www.example.com"
response = requests.get(url)
html_content = response.text
# 使用BeautifulSoup解析网页内容
soup = BeautifulSoup(html_content, "html.parser")
# 提取需要的数据
title = soup.title.text
links = soup.find_all("a")
for link in links:
print(link.get("href"))
# 保存数据到文件
with open("output.txt", "w") as file:
file.write(title)
```
这个样例演示了如何使用Jupyter Notebook进行简单的网页爬取。首先,我们使用`requests`库发送HTTP请求获取网页内容,然后使用`BeautifulSoup`库解析网页内容。接着,我们可以根据需要提取网页中的数据,例如标题和链接。最后,我们将提取到的数据保存到文件中。
阅读全文