您现在的位置是:首页 > 技术教程 正文

【python】爬取链家二手房数据做数据分析【附源码】

admin 阅读: 2024-03-19
后台-插件-广告管理-内容页头部广告(手机)

 

一、前言、

        在数据分析和挖掘领域中,网络爬虫是一种常见的工具,用于从网页上收集数据。本文将介绍如何使用 Python 编写简单的网络爬虫程序,从链家网上海二手房页面获取房屋信息,并将数据保存到 Excel 文件中。

二、效果图:

53c87a20bb734732ac484ee224692d51.png

  • 导入需要的库:

    • requests:用于发送 HTTP 请求和获取网页内容。
    • BeautifulSoup:用于解析 HTML 内容,提取所需信息。
    • pandas:用于数据处理和保存数据到 Excel 文件。
  1. import requests
  2. from bs4 import BeautifulSoup
  3. import pandas as pd

     如果出现模块报错

c124a1693bfc457ba1f2909ee9d299fc.png

        进入控制台输入:建议使用国内镜像源

pip install 模块名称 -i https://mirrors.aliyun.com/pypi/simple

         我大致罗列了以下几种国内镜像源:

  1. 清华大学
  2. https://pypi.tuna.tsinghua.edu.cn/simple
  3. 阿里云
  4. https://mirrors.aliyun.com/pypi/simple/
  5. 豆瓣
  6. https://pypi.douban.com/simple/
  7. 百度云
  8. https://mirror.baidu.com/pypi/simple/
  9. 中科大
  10. https://pypi.mirrors.ustc.edu.cn/simple/
  11. 华为云
  12. https://mirrors.huaweicloud.com/repository/pypi/simple/
  13. 腾讯云
  14. https://mirrors.cloud.tencent.com/pypi/simple/

三、代码分析

        首先,我们定义了一个函数 fetch_data(page_number),用于获取指定页面的房屋信息数据。这个函数会构建对应页数的 URL,并发送 GET 请求获取页面内容。然后,使用 BeautifulSoup 解析页面内容,并提取每个房屋信息的相关数据,如区域、房型、关注人数、单价和总价。最终将提取的数据以字典形式存储在列表中,并返回该列表。

        接下来,我们定义了主函数 main(),该函数控制整个爬取和保存数据的流程。在主函数中,我们循环爬取前 10 页的数据,调用 fetch_data(page_number) 函数获取每一页的数据,并将数据追加到列表中。然后,将所有爬取的数据存储在 DataFrame 中,并使用 df.to_excel('lianjia_data.xlsx', index=False) 将数据保存到 Excel 文件中。

最后,在程序的入口处,通过 if __name__ == "__main__": 来执行主函数 main()。

 

四、详解代码

  • 定义 fetch_data(page_number) 函数:

    • 这个函数接收一个参数 page_number,表示要爬取的页面页数。
    • 构建相应页数的 URL,并发送 GET 请求获取页面内容。
    • 使用 BeautifulSoup 解析页面内容,并提取每个房屋信息的相关数据,如区域、房型、关注人数、单价和总价。
    • 将提取的数据以字典形式存储在 rows 列表中,并返回该列表。
  1. # 收集单页数据 xpanx.com
  2. def fetch_data(page_number):
  3. url = f"https://sh.lianjia.com/ershoufang/pg{page_number}/"
  4. response = requests.get(url)
  5. if response.status_code != 200:
  6. print("请求失败")
  7. return []
  8. soup = BeautifulSoup(response.text, 'html.parser')
  9. rows = []
  10. for house_info in soup.find_all("li", {"class": "clear LOGVIEWDATA LOGCLICKDATA"}):
  11. row = {}
  12. # 使用您提供的类名来获取数据 xpanx.com
  13. row['区域'] = house_info.find("div", {"class": "positionInfo"}).get_text() if house_info.find("div", {
  14. "class": "positionInfo"}) else None
  15. row['房型'] = house_info.find("div", {"class": "houseInfo"}).get_text() if house_info.find("div", {
  16. "class": "houseInfo"}) else None
  17. row['关注'] = house_info.find("div", {"class": "followInfo"}).get_text() if house_info.find("div", {
  18. "class": "followInfo"}) else None
  19. row['单价'] = house_info.find("div", {"class": "unitPrice"}).get_text() if house_info.find("div", {
  20. "class": "unitPrice"}) else None
  21. row['总价'] = house_info.find("div", {"class": "priceInfo"}).get_text() if house_info.find("div", {
  22. "class": "priceInfo"}) else None
  23. rows.append(row)
  24. return rows
  25. # 主函数
  26. def main():
  27. all_data = []
  28. for i in range(1, 11): # 爬取前10页数据作为示例
  29. print(f"正在爬取第{i}页...")
  30. all_data += fetch_data(i)
  31. # 保存数据到Excel xpanx.com
  32. df = pd.DataFrame(all_data)
  33. df.to_excel('lianjia_data.xlsx', index=False)
  34. print("数据已保存到 'lianjia_data.xlsx'")
  • 定义 main() 函数:

    • 在主函数中循环爬取前 10 页的数据,调用 fetch_data(page_number) 函数获取每一页的数据,并将数据追加到 all_data 列表中。
    • 将所有爬取的数据存储在 DataFrame 中。
    • 最后使用 df.to_excel('lianjia_data.xlsx', index=False) 将数据保存到名为 lianjia_data.xlsx 的 Excel 文件中。

       

五、完整代码

 这段代码的主要流程是通过循环遍历页面页数,调用 fetch_data(page_number) 函数爬取每一页的数据,并将数据保存到 Excel 文件中。整体上,这个程序完成了以下几个主要功能:

  1. 发送 HTTP 请求并获取网页内容。
  2. 使用 BeautifulSoup 解析 HTML 内容,提取所需信息。
  3. 将提取的数据存储在列表中。
  4. 将列表数据转换为 DataFrame。
  5. 将 DataFrame 数据保存到 Excel 文件中。
  1. import requests
  2. from bs4 import BeautifulSoup
  3. import pandas as pd
  4. # 收集单页数据 xpanx.com
  5. def fetch_data(page_number):
  6. url = f"https://sh.lianjia.com/ershoufang/pg{page_number}/"
  7. response = requests.get(url)
  8. if response.status_code != 200:
  9. print("请求失败")
  10. return []
  11. soup = BeautifulSoup(response.text, 'html.parser')
  12. rows = []
  13. for house_info in soup.find_all("li", {"class": "clear LOGVIEWDATA LOGCLICKDATA"}):
  14. row = {}
  15. # 使用您提供的类名来获取数据 xpanx.com
  16. row['区域'] = house_info.find("div", {"class": "positionInfo"}).get_text() if house_info.find("div", {
  17. "class": "positionInfo"}) else None
  18. row['房型'] = house_info.find("div", {"class": "houseInfo"}).get_text() if house_info.find("div", {
  19. "class": "houseInfo"}) else None
  20. row['关注'] = house_info.find("div", {"class": "followInfo"}).get_text() if house_info.find("div", {
  21. "class": "followInfo"}) else None
  22. row['单价'] = house_info.find("div", {"class": "unitPrice"}).get_text() if house_info.find("div", {
  23. "class": "unitPrice"}) else None
  24. row['总价'] = house_info.find("div", {"class": "priceInfo"}).get_text() if house_info.find("div", {
  25. "class": "priceInfo"}) else None
  26. rows.append(row)
  27. return rows
  28. # 主函数
  29. def main():
  30. all_data = []
  31. for i in range(1, 11): # 爬取前10页数据作为示例
  32. print(f"正在爬取第{i}页...")
  33. all_data += fetch_data(i)
  34. # 保存数据到Excel xpanx.com
  35. df = pd.DataFrame(all_data)
  36. df.to_excel('lianjia_data.xlsx', index=False)
  37. print("数据已保存到 'lianjia_data.xlsx'")
  38. if __name__ == "__main__":
  39. main()

 

 

标签:
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

在线投稿:投稿 站长QQ:1888636

后台-插件-广告管理-内容页尾部广告(手机)
关注我们

扫一扫关注我们,了解最新精彩内容

搜索