selenium爬取全国房价排行榜数据可视化

爬取聚合数据的全国房价排行榜

python 复制代码
from selenium import webdriver
from bs4 import BeautifulSoup
import csv
from selenium import webdriver
from fake_useragent import UserAgent
import random
import subprocess
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
import os

ips = []
with open('ip.txt', 'r') as f:
    for line in f:
        ip = line.strip()
        ips.append(ip.strip())

# 启动Chrome浏览器调试服务
subprocess.Popen('cmd', shell=True)
subprocess.Popen('"chrome-win64\chrome.exe" --remote-debugging-port=9222', shell=True)

chrome_options = webdriver.ChromeOptions()
chrome_options.add_experimental_option("debuggerAddress", "localhost:9222")
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable‐gpu')
chrome_options.add_argument("--disable-blink-features=AutomationControlled")
chrome_options.add_argument('--proxy-server=http://' + random.choice(ips))
chrome_options.add_argument(f"user-agent={UserAgent().random}")
driver = webdriver.Chrome(options=chrome_options)


# 打开网页
url = 'https://fangjia.gotohui.com/'
driver.get(url)

# 等待表格加载完成
table_locator = (By.CSS_SELECTOR, 'body > div.container.recommend > div > div.listcontent.top15 > div.toplist.w900 > table')
table = WebDriverWait(driver, 10).until(EC.presence_of_element_located(table_locator))

# 获取表格的HTML内容
table_html = table.get_attribute('outerHTML')

# 使用 BeautifulSoup 解析表格
soup = BeautifulSoup(table_html, 'html.parser')

folder_path = os.getcwd()+"/data/房价/"
if not os.path.exists(folder_path):
    os.makedirs(folder_path)
    
# 打开CSV文件进行写入
with open(folder_path+'房价排行榜.csv', 'w', newline='', encoding='utf-8') as csvfile:
    writer = csv.writer(csvfile)
    writer.writerow(['排名', '城市', '二手房(元/㎡)', '同比(去年)', '环比(上月)','新房(元/㎡)'])
    rows = soup.find('tbody').find_all('tr')

    # 遍历每一行并提取数据
    for row in rows:
        cells = row.find_all('td')
        row_data = [cell.text.strip() for cell in cells]
        writer.writerow(row_data)

# 关闭 WebDriver
driver.quit()

可视化代码

python 复制代码
import pandas as pd
import matplotlib.pyplot as plt
import os
# 设置全局字体
plt.rcParams['font.sans-serif'] = ['SimHei']  # 使用微软雅黑字体,可以显示中文
plt.rcParams['axes.unicode_minus'] = False  # 解决负号显示问题

folder_path = os.getcwd()+"/data/房价/"
if not os.path.exists(folder_path):
    os.makedirs(folder_path)
# 读取 CSV 文件
df = pd.read_csv(folder_path+'房价排行榜.csv')

# 将城市分成9组
num_groups = 9
group_size = len(df) // num_groups

# 创建9个小图
fig, axs = plt.subplots(3, 3, figsize=(15, 15))

for i in range(num_groups):
    # 计算当前组的开始索引和结束索引
    start_index = i * group_size
    end_index = (i + 1) * group_size
    
    # 获取当前组的城市和二手房价数据
    cities = df['城市'][start_index:end_index]
    prices = df['新房(元/㎡)'][start_index:end_index]
    
    # 计算当前小图的行索引和列索引
    row_index = i // 3
    col_index = i % 3
    
    # 在当前小图中绘制当前组的数据
    axs[row_index, col_index].bar(cities, prices, color='darkred')
    axs[row_index, col_index].set_title(f'第{i+1}组城市新房价排行榜')
    axs[row_index, col_index].set_xlabel('城市')
    axs[row_index, col_index].set_ylabel('新房(元/㎡)')
    axs[row_index, col_index].tick_params(axis='x', rotation=90)  # 旋转x轴标签,以便更好地显示城市名

# 调整布局,防止标签重叠
plt.tight_layout()
plt.show()

二手房

python 复制代码
import pandas as pd
import matplotlib.pyplot as plt
import os
# 设置全局字体
plt.rcParams['font.sans-serif'] = ['SimHei']  # 使用微软雅黑字体,可以显示中文
plt.rcParams['axes.unicode_minus'] = False  # 解决负号显示问题

folder_path = os.getcwd()+"/data/房价/"
if not os.path.exists(folder_path):
    os.makedirs(folder_path)
# 读取 CSV 文件
df = pd.read_csv(folder_path+'房价排行榜.csv')

# 将城市分成9组
num_groups = 9
group_size = len(df) // num_groups

# 创建9个小图
fig, axs = plt.subplots(3, 3, figsize=(15, 15))

for i in range(num_groups):
    # 计算当前组的开始索引和结束索引
    start_index = i * group_size
    end_index = (i + 1) * group_size
    
    # 获取当前组的城市和二手房价数据
    cities = df['城市'][start_index:end_index]
    prices = df['二手房(元/㎡)'][start_index:end_index]
    
    # 计算当前小图的行索引和列索引
    row_index = i // 3
    col_index = i % 3
    
    # 在当前小图中绘制当前组的数据
    axs[row_index, col_index].bar(cities, prices, color='lightblue')
    axs[row_index, col_index].set_title(f'第{i+1}组城市二手房价排行榜')
    axs[row_index, col_index].set_xlabel('城市')
    axs[row_index, col_index].set_ylabel('二手房价(元/㎡)')
    axs[row_index, col_index].tick_params(axis='x', rotation=90)  # 旋转x轴标签,以便更好地显示城市名

# 调整布局,防止标签重叠
plt.tight_layout()
plt.show()
相关推荐
川石课堂软件测试1 小时前
自动化测试之 Cucumber 工具
数据库·功能测试·网络协议·测试工具·mysql·单元测试·prometheus
卓码软件测评2 小时前
第三方媒体流压力测试:k6插件xk6-webrtc的使用来测试媒体流的性能
网络协议·测试工具·http·https·webrtc·ssl·媒体
打小就很皮...6 小时前
ShowCountCard 功能迭代:新增周月对比属性,完善数据可视化场景
前端·react.js·信息可视化
深空数字孪生6 小时前
从代码实现到概念创新:AIGC如何重塑数据可视化的价值链条?
信息可视化·aigc
程序员三藏8 小时前
银行测试:第三方支付平台业务流,功能/性能/安全测试方法
自动化测试·软件测试·python·功能测试·测试工具·职场和发展·安全性测试
废弃的小码农9 小时前
测试基础--Day01--软件测试基础理论
python·功能测试·测试工具
YangYang9YangYan9 小时前
金融分析师核心能力构建:从数据解读到战略洞察
大数据·信息可视化·金融·数据分析
胜天半月子11 小时前
接口测试 | Postman的安装和测试使用
测试工具·接口测试·postman
Bellafu66614 小时前
selenium 常用xpath写法
前端·selenium·测试工具
qq_4369621815 小时前
奥威BI金蝶数据分析可视化方案:200+开箱即用报表驱动智能决策
信息可视化·数据挖掘·数据分析