Python进阶--查询商品历史价格(基于慢慢买比价网的爬虫)
import requests
from bs4 import BeautifulSoup
import pandas as pd
# 设置请求头信息,模拟浏览器访问
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
def get_price_history(url):
# 发送GET请求
response = requests.get(url, headers=headers)
# 解析网页
soup = BeautifulSoup(response.text, 'lxml')
# 找到价格历史数据所在的表格
table = soup.find('table', class_='tb_list')
# 提取表格中的数据
rows = table.find_all('tr')[1:] # 跳过表头
data = [[td.text.strip() for td in row.find_all('td')] for row in rows]
# 将数据转换为DataFrame
df = pd.DataFrame(data, columns=['日期', '价格', '销售商'])
return df
# 示例URL
url = 'https://www.hh360.com/product/293460.html'
# 获取价格历史数据
price_history = get_price_history(url)
print(price_history)
这段代码首先导入了必要的模块,设置了请求头信息,定义了一个函数get_price_history
来获取商品的价格历史。然后发送GET请求,解析网页,提取出价格历史数据,并将其转换为pandas
的DataFrame
格式,最后打印出价格历史数据。这个例子展示了如何使用Python进行网页数据抓取,并处理数据以供分析使用。
评论已关闭