python爬取boss直聘职位数据,并保存到本地

2023-10-14 03:59

本文主要是介绍python爬取boss直聘职位数据,并保存到本地,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

代码环境

  1. python 3.7
  2. pip 19.0.3

主要引用的第三方库

  1. requests,用于模拟http/https请求
    • 安装: pip install requests
    • 文档: requests中文文档
  2. beautifulsoup4,用于解析网页,得出我们想要的内容。
    • 安装: pip install beautifulsoup4
    • 文档: bs4中文文档
  3. xlwt,将爬到的结果以Excel的形式保存到本地
    • 安装: pip install xlwt
    • api: xlwt api

打开网页

首先打开boss直聘官网,选择一个地点,然后输入关键字,点击搜索,这里以深圳、python为例。
在这里插入图片描述

观察地址栏URL,可以发现有四个参数,分别是query,city,industry和position,query和city很明显是我输入的python和选择的地点深圳;而industry和position也就是公司行业和职位类型,这里没有选择这两项。

分析网页

F12打开开发者工具
在这里插入图片描述
每一条职位信息都在一个<li>标签中,<li>标签下的<div class=“job-primary”>就是我们要找的内容。

代码

  • 获取城市编码

    url中的city=101280600,显示的是深圳,说明城市名有一个对应的编号,F12 点击Network选中XHR,有一个city.json
    在这里插入图片描述

import requests
from bs4 import BeautifulSoup
import json
import xlwt
import time
import randomuser_agent_list = ["Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36","Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36","Mozilla/5.0 (Windows NT 10.0; …) Gecko/20100101 Firefox/61.0","Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36","Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.62 Safari/537.36","Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36","Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)","Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10.5; en-US; rv:1.9.2.15) Gecko/20110303 Firefox/3.6.15"
]headers = {"user-agent": random.choice(user_agent_list)}# 获取指定城市的编码
def get_city_code(city_name):response = requests.get("https://www.zhipin.com/wapi/zpCommon/data/city.json")contents = json.loads(response.text)cities = contents["zpData"]["hotCityList"]city_code = contents["zpData"]["locationCity"]["code"]for city in cities:if city["name"] == city_name:city_code = city["code"]return city_codedef get_url(query="", city="", industry="", position="", page=1):base_url = "https://www.zhipin.com/job_detail/?query={}&city={}&industry={}&position={}&page={}"urls = []url = base_url.format(query, city, industry, position, page)response = requests.get(url, headers=headers)soup = BeautifulSoup(response.text, "lxml")page_list = soup.find("div", "page").find_all("a")urls.append(url)while page_list[len(page_list) - 1]["href"] != "javascript:;":page += 1url = base_url.format(query, city, industry, position, page)urls.append(url)response = requests.get(url, headers=headers)soup = BeautifulSoup(response.text, "lxml")page_list = soup.find("div", "page").find_all("a")return urlsdef get_html(url):response = requests.get(url, headers=headers)return response.textdef job_info(job_name, company, industry, finance, staff_number, salary, site, work_experience, education_bak, job_desc):return {"job_name": job_name,"company": company,"industry": industry,"finance": finance,"staff_number": staff_number,"salary": salary,"site": site,"work_experience": work_experience,"education_bak": education_bak,"job_desc": job_desc}def get_job_desc(jid, lid):url = "https://www.zhipin.com/wapi/zpgeek/view/job/card.json?jid={}&lid={}"response = requests.get(url.format(jid, lid), headers=headers)html = json.loads(response.text)["zpData"]["html"]soup = BeautifulSoup(html, "lxml")desc = soup.find("div", "detail-bottom-text").get_text()return descdef get_content(html):bs = BeautifulSoup(html, 'lxml')contents = []for info in bs.find_all("div", "job-primary"):job_name = info.find("div", "job-title").get_text()company = info.find("div", "company-text").a.get_text()jid = info.find("div", "info-primary").a["data-jid"]lid = info.find("div", "info-primary").a["data-lid"]desc = get_job_desc(jid, lid)texts = [text for text in info.find("div", "info-primary").p.stripped_strings]site = texts[0]work_exp = texts[1]edu_bak = texts[2]salary = info.span.get_text()companies = [text for text in info.find("div", "company-text").p.stripped_strings]industry = companies[0]if len(companies) > 2:finance = companies[1]staff_num = companies[2]else:finance = Nonestaff_num = companies[1]contents.append(job_info(job_name, company, industry, finance, staff_num, salary, site, work_exp, edu_bak, desc))time.sleep(1)return contentsdef save_data(content, city, query):file = xlwt.Workbook(encoding="utf-8", style_compression=0)sheet = file.add_sheet("job_info", cell_overwrite_ok=True)sheet.write(0, 0, "职位名称")sheet.write(0, 1, "公司名称")sheet.write(0, 2, "行业")sheet.write(0, 3, "融资情况")sheet.write(0, 4, "公司人数")sheet.write(0, 5, "薪资")sheet.write(0, 6, "工作地点")sheet.write(0, 7, "工作经验")sheet.write(0, 8, "学历要求")sheet.write(0, 9, "职位描述")for i in range(len(content)):sheet.write(i+1, 0, content[i]["job_name"])sheet.write(i+1, 1, content[i]["company"])sheet.write(i+1, 2, content[i]["industry"])sheet.write(i+1, 3, content[i]["finance"])sheet.write(i+1, 4, content[i]["staff_number"])sheet.write(i+1, 5, content[i]["salary"])sheet.write(i+1, 6, content[i]["site"])sheet.write(i+1, 7, content[i]["work_experience"])sheet.write(i+1, 8, content[i]["education_bak"])sheet.write(i+1, 9, content[i]["job_desc"])file.save(r'c:\projects\{}_{}.xls'.format(city, query))def main():city_name = "深圳"city = get_city_code(city_name)query = "python"urls = get_url(query=query, city=city)contents = []for url in urls:html = get_html(url)content = get_content(html)contents += contenttime.sleep(5)save_data(contents, city_name, query)if __name__ == '__main__':main()

这篇关于python爬取boss直聘职位数据,并保存到本地的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/207984

相关文章

基于Python编写一个git自动上传的脚本(打包成exe)

《基于Python编写一个git自动上传的脚本(打包成exe)》这篇文章主要为大家详细介绍了如何基于Python编写一个git自动上传的脚本并打包成exe,文中的示例代码讲解详细,感兴趣的小伙伴可以跟... 目录前言效果如下源码实现利用pyinstaller打包成exe利用ResourceHacker修改e

Python在二进制文件中进行数据搜索的实战指南

《Python在二进制文件中进行数据搜索的实战指南》在二进制文件中搜索特定数据是编程中常见的任务,尤其在日志分析、程序调试和二进制数据处理中尤为重要,下面我们就来看看如何使用Python实现这一功能吧... 目录简介1. 二进制文件搜索概述2. python二进制模式文件读取(rb)2.1 二进制模式与文本

Python中Tkinter GUI编程详细教程

《Python中TkinterGUI编程详细教程》Tkinter作为Python编程语言中构建GUI的一个重要组件,其教程对于任何希望将Python应用到实际编程中的开发者来说都是宝贵的资源,这篇文... 目录前言1. Tkinter 简介2. 第一个 Tkinter 程序3. 窗口和基础组件3.1 创建窗

Django调用外部Python程序的完整项目实战

《Django调用外部Python程序的完整项目实战》Django是一个强大的PythonWeb框架,它的设计理念简洁优雅,:本文主要介绍Django调用外部Python程序的完整项目实战,文中通... 目录一、为什么 Django 需要调用外部 python 程序二、三种常见的调用方式方式 1:直接 im

Python字符串处理方法超全攻略

《Python字符串处理方法超全攻略》字符串可以看作多个字符的按照先后顺序组合,相当于就是序列结构,意味着可以对它进行遍历、切片,:本文主要介绍Python字符串处理方法的相关资料,文中通过代码介... 目录一、基础知识:字符串的“不可变”特性与创建方式二、常用操作:80%场景的“万能工具箱”三、格式化方法

浅析python如何去掉字符串中最后一个字符

《浅析python如何去掉字符串中最后一个字符》在Python中,字符串是不可变对象,因此无法直接修改原字符串,但可以通过生成新字符串的方式去掉最后一个字符,本文整理了三种高效方法,希望对大家有所帮助... 目录方法1:切片操作(最推荐)方法2:长度计算索引方法3:拼接剩余字符(不推荐,仅作演示)关键注意事

C#实现将XML数据自动化地写入Excel文件

《C#实现将XML数据自动化地写入Excel文件》在现代企业级应用中,数据处理与报表生成是核心环节,本文将深入探讨如何利用C#和一款优秀的库,将XML数据自动化地写入Excel文件,有需要的小伙伴可以... 目录理解XML数据结构与Excel的对应关系引入高效工具:使用Spire.XLS for .NETC

python版本切换工具pyenv的安装及用法

《python版本切换工具pyenv的安装及用法》Pyenv是管理Python版本的最佳工具之一,特别适合开发者和需要切换多个Python版本的用户,:本文主要介绍python版本切换工具pyen... 目录Pyenv 是什么?安装 Pyenv(MACOS)使用 Homebrew:配置 shell(zsh

Python自动化提取多个Word文档的文本

《Python自动化提取多个Word文档的文本》在日常工作和学习中,我们经常需要处理大量的Word文档,本文将深入探讨如何利用Python批量提取Word文档中的文本内容,帮助你解放生产力,感兴趣的小... 目录为什么需要批量提取Word文档文本批量提取Word文本的核心技术与工具安装 Spire.Doc

Python中Request的安装以及简单的使用方法图文教程

《Python中Request的安装以及简单的使用方法图文教程》python里的request库经常被用于进行网络爬虫,想要学习网络爬虫的同学必须得安装request这个第三方库,:本文主要介绍P... 目录1.Requests 安装cmd 窗口安装为pycharm安装在pycharm设置中为项目安装req