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()
相关推荐
测试老哥17 小时前
Selenium 使用指南
自动化测试·软件测试·python·selenium·测试工具·职场和发展·测试用例
文人sec1 天前
性能测试-jmeter9-逻辑控制器、定时器压力并发
测试工具·jmeter·性能优化·模块测试
学生信的大叔1 天前
【Python自动化】Ubuntu24.04配置Selenium并测试
python·selenium·自动化
计算机编程小央姐1 天前
跟上大数据时代步伐:食物营养数据可视化分析系统技术前沿解析
大数据·hadoop·信息可视化·spark·django·课程设计·食物
CodeCraft Studio1 天前
【案例分享】TeeChart 助力 Softdrill 提升油气钻井数据可视化能力
信息可视化·数据可视化·teechart·油气钻井·石油勘探数据·测井数据
招风的黑耳1 天前
赋能高效设计:12套中后台管理信息系统通用原型框架
信息可视化·axure后台模板·原型模板
程思扬1 天前
利用JSONCrack与cpolar提升数据可视化及跨团队协作效率
网络·人工智能·经验分享·docker·信息可视化·容器·架构
路人与大师1 天前
【Mermaid.js】从入门到精通:完美处理节点中的空格、括号和特殊字符
开发语言·javascript·信息可视化
Freed&2 天前
《没有架构图?用 netstat、ss、tcpdump 还原服务连接与数据流向》
网络·测试工具·tcpdump