美文网首页
Python-爬取拉勾网招聘信息

Python-爬取拉勾网招聘信息

作者: 24K男 | 来源:发表于2018-12-06 10:53 被阅读0次

啊哈,自己太懒了,招聘信息什么的懒的看了,索性抓取下来慢慢看。

1. 我为什么要爬取招聘信息

其实我就是太懒了,虽然我是个做Android的,但是挡不住我使用Python的热情。

2. 如何实现

懒得说了,你自己看代码吧。

2.0 一些说明

1. 为什么需要Cookie

按照现在网站的尿性,没有Cookie,你什么信息也拿不到。
所以老实的登录吧,然后使用自己的Cookie,反正我的Cookie是不会给你用的。

2. 如何获取网页URL

我觉得这个问题太简单了,我拒绝回答!
哈哈,Chrome啊等浏览器自带的开发工具,足够分析使用了。

3. 严重警告

代码写的一般,大家随便看看就好,想用的自己去改造。

2.1 LagouSpider

 #!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Date: 2018-12-04 09:56:28

from bs4 import BeautifulSoup
from urllib import request, parse
import os
import json
from Utils import CsvWriter


class LagouSpider:
    '''
    抓取拉勾上的招聘信息。
    因为限制的原因,必须要求你登录自己的账号后,截取所需的Cookie。
    '''

    def __init__(self, url):
        self.page_header = {
            'Accept': 'application/json, text/javascript, */*; q=0.01',
            'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
            'Host': 'www.lagou.com',
            'Origin': 'https://www.lagou.com',
            'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36',
            'Connection': 'keep-alive',
            'Referer': 'https://www.lagou.com/jobs/list_Android?labelWords=&fromSearch=true&suginput=',
            'X-Anit-Forge-Token': 'None',
            'X-Requested-With': 'XMLHttpRequest',
            'Cookie': '填写你登录拉勾网后的Cookie信息'
        }
        self.url = url
        self.tags = [('positionId', '职位ID'), ('positionName', '职位名称'), ('salary', '薪资'), ('createTime', '发布时间'), ('workYear', '工作经验'), ('education', '学历'), ('positionLables', '职位标签'), ('jobNature', '职位类型'), ('firstType', '职位大类'), ('secondType', '职位细类'), ('positionAdvantage', '职位优势'), ('city', '城市'),
                     ('district', '行政区'), ('businessZones', '商圈'), ('publisherId', '发布人ID'), ('companyId', '公司ID'), ('companyFullName', '公司名'), ('companyShortName', '公司简称'), ('companyLabelList', '公司标签'), ('companySize', '公司规模'), ('financeStage', '融资阶段'), ('industryField', '企业领域'), ('industryLables', '企业标签')]

    def fetch_page_info(self, page_num, keyword, file_path):
        '''
        根据url来获取网页内容。
        page_num:页数。
        keyword:关键字
        file_path:写入文件的路径,要求必须为csv文件。
        '''
        if self.url is None:
            print('Url为空,无法获取信息。')
            return

        file_name = os.path.basename(file_path)
        if not file_name.endswith('csv'):
            print("请使用csv文件来记录信息。")
            return

        if not keyword.strip():
            print("关键字不能为空。")
            return

        page_data = parse.urlencode(
            [('pn', page_num), ('kd', keyword)])

        req = request.Request(self.url, headers=self.page_header)
        page = request.urlopen(req, data=page_data.encode('utf-8')).read()
        page = page.decode('utf-8')
        print('Get content is:{}'.format(page))
        if page is None:
            print('Text is Null.')
            return
        data = json.loads(page)
        postionResult = data.get('content').get('positionResult').get('result')

        # 将数据记录至CSV中
        # 首先写入头
        headers = []
        for tag in self.tags:
            headers.append(tag[1])
        rows = []
        rows.append(headers)
        for position in postionResult:
            row = []
            for tag in self.tags:
                row.append(position.get(tag[0]))
            rows.append(row)
        CsvWriter.writeRows(filePath=file_path, rows=rows)

        # # 将数据写入文件中
        # with open('Position.txt', 'w+') as f:
        #     for position in postionResult:
        #         f.write("---------------------------\n")
        #         for tag in tags:
        #             f.write(str(tag[1])+":"+str(position.get(tag[0]))+"\n")
        # print("解析完毕。")


if __name__ == '__main__':
    url = r'https://www.lagou.com/jobs/positionAjax.json?city=%E4%B8%8A%E6%B5%B7'
    spider = LagouSpider(url)
    filePath = os.path.dirname(__file__)+os.sep+'Position_Patch.csv'
    for index in range(1,9):
        spider.fetch_page_info(
            page_num=index, keyword='Android', file_path=filePath)
    print("解析完成,请查看文件。")


2.2 Utils

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Date: 2018-12-04 14:21:39

import csv


class CsvWriter:
    @staticmethod
    def writeRow(filePath, row):
        with open(filePath, newline='', mode='a') as f:
            csv_writer = csv.writer(f)
            csv_writer.writerow(row)

    @staticmethod
    def writeRows(filePath, rows):
        print(len(rows))
        with open(filePath, newline='', mode='a') as f:
            csv_writer = csv.writer(f)
            csv_writer.writerows(rows)


class CsvReader:
    @staticmethod
    def printRows(filePath):
        with open(filePath, 'r+') as f:
            reader = csv.reader(f)
            for row in reader:
                print(row)

3. 总结

我注释写的那么详细,如果存在疑问,欢迎留言。

相关文章

  • Python-爬取拉勾网招聘信息

    啊哈,自己太懒了,招聘信息什么的懒的看了,索性抓取下来慢慢看。 1. 我为什么要爬取招聘信息 其实我就是太懒了,虽...

  • 区块链招聘信息爬取与分析

    最近在研究区块链,闲来无事抓取了拉勾网上450条区块链相关的招聘信息。过程及结果如下。 拉勾网爬取 首先是从拉勾网...

  • Python urllib爬取拉勾网职位信息

    为了获取拉勾网的招聘信息,对数据分析岗位的基本信息进行爬取。之所以选择拉勾网作为本项目的数据源,主要是因为相对于其...

  • Selenium小例子

    爬取腾讯动漫 爬取某网站漫画 爬取拉勾网

  • 爬虫—拉钩网招聘岗位爬取

    爬取拉勾网各类招聘岗位,爬取不同的岗位种类只需要初始化时候传入参数不同,爬取成功后会自动写入同目录的csv文件中,...

  • 拉勾网职位信息爬取

    分析网页 通过浏览器查看网页源代码,未能找到职位信息,因此需要打开F12开发者工具抓包分析职位数据使怎样被加载到网...

  • 爬取拉勾招聘职位

    爬取拉勾招聘职位 import json import pymysql import requests from ...

  • python爬取拉勾网招聘数据

    又一年的毕业季来临了,一大波大学生加入了找工作的大军,给这些新加入职场的学生们提供宝贵的招聘的信息,通过pytho...

  • 爬取拉勾网

    拉勾网数据加载的方式使用的是ajax异步加载的方式从后端加载数据,所以就需要分析加载的URL,如果有疑问可以看我的...

  • node.js爬虫爬取拉勾网职位信息

    简介 用node.js写了一个简单的小爬虫,用来爬取拉勾网上的招聘信息,共爬取了北京、上海、广州、深圳、杭州、西安...

网友评论

      本文标题:Python-爬取拉勾网招聘信息

      本文链接:https://www.haomeiwen.com/subject/guuncqtx.html