Python吉林长春二手房源爬虫数据可视化系统设计与实现




import requests
from bs4 import BeautifulSoup
import pandas as pd
import matplotlib.pyplot as plt
 
# 定义一个函数来获取房源信息
def get_source_info(url):
    response = requests.get(url)
    soup = BeautifulSoup(response.text, 'html.parser')
    info_list = soup.select('.info-list li')
    info_dict = {}
    for info in info_list:
        key = info.select('span')[0].text
        value = info.select('a|span')[1].text if len(info.select('a|span')) > 1 else ''
        info_dict[key] = value
    return info_dict
 
# 定义一个函数来获取房源详细信息
def get_source_details(url):
    response = requests.get(url)
    soup = BeautifulSoup(response.text, 'html.parser')
    title = soup.select('.title-bar-01')[0].text
    info_list = soup.select('.house-parameter li')
    info_dict = {}
    for info in info_list:
        key = info.select('span')[0].text
        value = info.select('span')[1].text
        info_dict[key] = value
    return title, info_dict
 
# 定义一个函数来获取房源数据
def get_source_data(url):
    response = requests.get(url)
    soup = BeautifulSoup(response.text, 'html.parser')
    data_list = soup.select('.house-list-wrap .house-list-item')
    source_data = []
    for data in data_list:
        info_dict = get_source_info(data.select('a')[0]['href'])
        info_dict['title'] = data.select('.house-title')[0].text
        info_dict['price'] = data.select('.price')[0].text
        source_data.append(info_dict)
    return source_data
 
# 获取二手房数据
source_data = get_source_data('http://ershou.jilin.cn/ershoufang/')
df = pd.DataFrame(source_data)
 
# 数据可视化
plt.figure(figsize=(20, 10))
plt.subplot(1, 2, 1)
plt.scatter(df['area'], df['price'])
plt.xlabel('Area (平方米)')
plt.ylabel('Price (万元)')
plt.title('二手房面积与价格关系散点图')
 
plt.subplot(1, 2, 2)
plt.hist(df['price'], bins=50)
plt.xlabel('Price (万元)')
plt.ylabel('Count')
plt.title('二手房价格分布直方图')
 
plt.show()

这段代码首先定义了一个函数get_source_info来解析房源列表页的每条房源信息,然后定义了一个函数get_source_details来解析房源详情页的标题和详细信息。最后,定义了一个函数get_source_data来获取整个房源页的数据,并将其存储为DataFrame格式,以便进行数据可视化分析。代码中使用了matplotlib.pyplot库来绘制散点图和直方图,展示了房源面积与价格之间的关系以及房源价格的分布情况。

最后修改于:2024年08月25日 19:32

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日