Python用pandas库爬取数据并保存到Excel表
时间: 2024-05-09 22:20:47 浏览: 112
基于python实现Pandas提取指定数据并保存在原Excel工作簿中
以下是一个Python程序,使用pandas库来爬取数据并保存到Excel表中:
```python
import pandas as pd
import requests
# 请求URL
url = 'http://www.example.com/data'
# 发送HTTP请求,获取数据
response = requests.get(url)
# 将数据转换为Dataframe对象
dataframe = pd.read_json(response.text)
# 创建Excel文件
writer = pd.ExcelWriter('data.xlsx')
# 将数据写入Excel表中
dataframe.to_excel(writer, index=False)
# 保存Excel文件
writer.save()
```
这个程序首先使用requests库发送HTTP请求来获取数据。然后,使用pandas库将数据转换为Dataframe对象。最后,使用pandas库将Dataframe对象写入Excel表中,并保存Excel文件。
阅读全文