亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

Python爬蟲實例——scrapy框架爬取拉勾網(wǎng)招聘信息

瀏覽:67日期:2022-07-17 15:05:36

本文實例為爬取拉勾網(wǎng)上的python相關的職位信息, 這些信息在職位詳情頁上, 如職位名, 薪資, 公司名等等.

分析思路

分析查詢結果頁

在拉勾網(wǎng)搜索框中搜索’python’關鍵字, 在瀏覽器地址欄可以看到搜索結果頁的url為: ’https://www.lagou.com/jobs/list_python?labelWords=&fromSearch=true&suginput=’, 嘗試將?后的參數(shù)刪除, 發(fā)現(xiàn)訪問結果相同.

打開Chrome網(wǎng)頁調試工具(F12), 分析每條搜索結果(即每個職位)在html中所處的元素定位, 發(fā)現(xiàn)每條結果都在<ul class='item_con_list'>下的li標簽中.

Python爬蟲實例——scrapy框架爬取拉勾網(wǎng)招聘信息

因為我們需要每個職位的具體信息, 因此需要獲取到每條搜索結果的詳情url, 即點擊搜索結果后進入的詳情頁的url.

繼續(xù)查看li標簽中的元素, 找到想要的詳情url, 找到后的url為: href=https://www.lagou.com/jobs/6945237.html?show=b6e8e778fcae4c2aa2111ba58f9ebfa0

Python爬蟲實例——scrapy框架爬取拉勾網(wǎng)招聘信息

查看其它搜索結果的詳情url, 發(fā)現(xiàn)其格式都為: rel='external nofollow'

對于第一個ID, 每條結果的id都不一樣, 猜想其為標記每個職位的唯一id, 對于show_id, 每條結果的id都是一樣的, 嘗試刪除show參數(shù), 發(fā)現(xiàn)一樣可以訪問到具體結果詳情頁

那么我們直接通過xpath提取到每個職位的第一個ID即可, 但是調試工具的elements標簽下的html是最終網(wǎng)頁展示的html, 并不一定就是我們訪問 https://www.lagou.com/jobs/list_python 返回的response的html, 因此點到Network標簽, 重新刷新一下頁面, 找到 https://www.lagou.com/jobs/list_python 對應的請求, 查看其對應的response, 搜索 ’position_link’(即前面我們在elements中找到的每條搜索結果的詳情url), 發(fā)現(xiàn)確實返回了一個網(wǎng)址, 但是其重要的兩個ID并不是直接放回的, 而是通過js生成的, 說明我們想要的具體數(shù)據(jù)并不是這個這個請求返回的.

Python爬蟲實例——scrapy框架爬取拉勾網(wǎng)招聘信息

那么我們就需要找到具體是那個請求會返回搜索結果的信息, 一般這種情況首先考慮是不是通過ajax獲取的數(shù)據(jù), 篩選類型為XHR(ajax)的請求, 可以逐個點開查看response, 發(fā)現(xiàn) positionAjax.json 返回的數(shù)據(jù)中就存在我們想要的每條搜索結果的信息. 說明確實是通過ajax獲取的數(shù)據(jù), 其實點擊下一頁, 我們也可以發(fā)現(xiàn)地址欄url地址并沒有發(fā)生變化, 只是局部刷新了搜索結果的數(shù)據(jù), 也說明了搜索結果是通過ajax返回的.

Python爬蟲實例——scrapy框架爬取拉勾網(wǎng)招聘信息

分析上面ajax的response, 查看其中是否有我們想要的職位ID, 在preview中搜索之前在elements中找到的某個職位的url的兩個ID, 確實兩個ID都存在response中, 分析發(fā)現(xiàn)第一個ID即為positionId, 第二個即為showId, 我們還可以發(fā)現(xiàn)response中返回了當前的頁碼數(shù)pageNo

因此我們只需要訪問上面ajax對應的url: https://www.lagou.com/jobs/positionAjax.json?needAddtionalResult=false 就可以拿到我們想要的ID, 然后填入詳情url模板: https://www.lagou.com/jobs/{position_id}.html?show={show_id}中即可訪問詳情頁了.

但是當我們直接訪問 https://www.lagou.com/jobs/positionAjax.json?needAddtionalResult=false 時 ,返回的結果卻是: {'status':false,'msg':'您操作太頻繁,請稍后再訪問','clientIp':'139.226.66.44','state':2402}

Python爬蟲實例——scrapy框架爬取拉勾網(wǎng)招聘信息

經(jīng)過百度查詢后發(fā)現(xiàn)原來直接訪問上述地址是不行的, 這也是拉鉤的一個反爬策略, 需要我們帶上之前訪問查詢結果頁(https://www.lagou.com/jobs/list_python?)的cookie才行, 因為我們這里使用的是scrapy框架, 該框架是能夠自帶上次請求的cookie來訪問下一個請求的, 所以我們這里不需要手動去添加cookie信息, 只需要首先訪問一下查詢結果頁就可以了. 即start_url = https://www.lagou.com/jobs/list_python

此外發(fā)現(xiàn)這個ajax請求是通過POST方式發(fā)送的, 因此還需要分析它提交的form數(shù)據(jù), 在第一頁中有三條數(shù)據(jù)信息, first為true, pn為1 kd為python , 第二頁中first為false, pn為2, kd同樣為python, 且多了一個sid

分析這四個參數(shù), 第一個first為表示是否是第一頁, 第二個pn為表示當前頁碼數(shù), 第三個kd為表示搜索的關鍵字, 第四個sid經(jīng)過和上面showId對比發(fā)現(xiàn)其值就為showId

Python爬蟲實例——scrapy框架爬取拉勾網(wǎng)招聘信息

分析職位詳情頁

前面分析完后就可以拼接出職位詳情頁url了, 點開詳情頁, 同樣的思路分析我們想要的數(shù)據(jù)是不是就在詳情頁的url中, 這里想要職位名稱, 工資, 地點, 經(jīng)驗, 關鍵字, 公司信息等

Python爬蟲實例——scrapy框架爬取拉勾網(wǎng)招聘信息

在network中查找對應的response, 發(fā)現(xiàn)數(shù)據(jù)確實就存在response中, 因此直接通過xpath就可以提取想要的數(shù)據(jù)了

編寫爬蟲代碼

具體代碼在github:

這里只放出關鍵代碼

創(chuàng)建scrapy項目

scrapy startproject LaGou

創(chuàng)建爬蟲

scrapy genspider lagou www.lagou.com

編寫items.py, 設置要想爬取的字段

# -*- coding: utf-8 -*-# Define here the models for your scraped items## See documentation in:# https://docs.scrapy.org/en/latest/topics/items.htmlimport scrapyclass LagouItem(scrapy.Item): # define the fields for your item here like: job_url = scrapy.Field() job_name = scrapy.Field() salary = scrapy.Field() city = scrapy.Field() area = scrapy.Field() experience = scrapy.Field() education = scrapy.Field() labels = scrapy.Field() publish_date = scrapy.Field() company = scrapy.Field() company_feature = scrapy.Field() company_public = scrapy.Field() company_size= scrapy.Field()

編寫爬蟲代碼 lagou.py

# -*- coding: utf-8 -*-import scrapyfrom LaGou.items import LagouItemimport jsonfrom pprint import pprintimport timeclass LagouSpider(scrapy.Spider): name = ’lagou’ allowed_domains = [’www.lagou.com’] start_urls = [’https://www.lagou.com/jobs/list_python?’] def __init__(self): # 設置頭信息, 若不設置的話, 在請求第二頁時即被拉勾網(wǎng)認為是爬蟲而不能爬取數(shù)據(jù) self.headers = { 'Accept': 'application/json, text/javascript, */*; q=0.01', 'Connection': 'keep-alive', 'Host': 'www.lagou.com', 'Referer': ’https://www.lagou.com/jobs/list_Python?’, 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8', 'referer': 'https://www.lagou.com/jobs/list_python?' } self.sid = ’’ self.job_url_temp = ’https://www.lagou.com/jobs/{}.html?show={}’ # 清空文件 with open(’jobs.json’, ’w’) as f: f.truncate() def parse(self, response): ''' 解析起始頁 ''' # response為GET請求的起始頁, 自動獲取cookie # 提交POST帶上前面返回的cookies, 訪問數(shù)據(jù)結果第一頁 yield scrapy.FormRequest( ’https://www.lagou.com/jobs/positionAjax.json?needAddtionalResult=false’, callback=self.parse_list, formdata={'first': 'false', 'pn': '1', 'kd': 'python', }, headers=self.headers ) def parse_list(self, response): ''' 解析結果列表頁的json數(shù)據(jù) ''' # 獲取返回的json,轉為字典 res_dict = json.loads(response.text) # 判斷返回是否成功 if not res_dict.get(’success’): print(res_dict.get(’msg’, ’返回異常’)) else: # 獲取當前頁數(shù) page_num = res_dict[’content’][’pageNo’] print(’正在爬取第{}頁’.format(page_num)) # 獲取sid if not self.sid: self.sid = res_dict[’content’][’showId’] # 獲取響應中的職位url字典 part_url_dict = res_dict[’content’][’hrInfoMap’] # 遍歷職位字典 for key in part_url_dict: # 初始化保存職位的item item = LagouItem() # 拼接完整職位url item[’job_url’] = self.job_url_temp.format(key, self.sid) # 請求職位詳情頁 yield scrapy.Request( item[’job_url’], callback=self.parse_detail, headers=self.headers, meta={’item’: item} ) # 獲取下一頁 if page_num < 30: # time.sleep(2) yield scrapy.FormRequest( ’https://www.lagou.com/jobs/positionAjax.json?needAddtionalResult=false’, callback=self.parse_list, formdata={'first': 'false','pn': str(page_num+1),'kd': 'python','sid': self.sid}, headers=self.headers ) def parse_detail(self, response): ''' 解析職位詳情頁 ''' # 接收item item = response.meta[’item’] # 解析數(shù)據(jù) # 獲取職位頭div job_div = response.xpath(’//div[@class='position-content-l']’) if job_div: item[’job_name’] = job_div.xpath(’./div/h1/text()’).extract_first() item[’salary’] = job_div.xpath(’./dd/h3/span[1]/text()’).extract_first().strip() item[’city’] = job_div.xpath(’./dd/h3/span[2]/text()’).extract_first().strip(’/’).strip() item[’area’] = response.xpath(’//div[@class='work_addr']/a[2]/text()’).extract_first() item[’experience’] = job_div.xpath(’./dd/h3/span[3]/text()’).extract_first().strip(’/’).strip() item[’education’] = job_div.xpath(’./dd/h3/span[4]/text()’).extract_first().strip(’/’).strip() item[’labels’] = response.xpath(’//ul[@class='position-label clearfix']/li/text()’).extract() item[’publish_date’] = response.xpath(’//p[@class='publish_time']/text()’).extract_first() item[’publish_date’] = item[’publish_date’].split(’&’)[0] # 獲取公司dl company_div = response.xpath(’//dl[@class='job_company']’) item[’company’] = company_div.xpath(’./dt/a/img/@alt’).extract_first() item[’company_feature’] = company_div.xpath(’./dd//li[1]/h4[@class='c_feature_name']/text()’).extract_first() item[’company_feature’] = item[’company_feature’].split(’,’) item[’company_public’] = company_div.xpath(’./dd//li[2]/h4[@class='c_feature_name']/text()’).extract_first() item[’company_size’] = company_div.xpath(’./dd//li[4]/h4[@class='c_feature_name']/text()’).extract_first() yield item

編寫middlewares.py, 自定義downloadermiddleware, 用來每次發(fā)送請求前, 隨機設置user-agent, 這里使用了第三方庫 fake_useragent, 能夠隨機提供user-agent, 使用前先安裝: pip install fake_useragent

from fake_useragent import UserAgentimport randomclass RandomUserAgentDM: ''' 隨機獲取userAgent ''' def __init__(self): self.user_agent = UserAgent() def process_request(self, request, spider): request.headers[’User-Agent’] = self.user_agent.random

編寫pipelines.py, 將數(shù)據(jù)存為json文件

import jsonclass LagouPipeline: def process_item(self, item, spider): with open(’jobs.json’, ’a’, encoding=’utf-8’) as f: item_json = json.dumps(dict(item), ensure_ascii=False, indent=2) f.write(item_json) f.write(’n’)

編寫settings.py

# 設置日志顯示LOG_LEVEL = ’WARNING’# 設置ROBOTSTXT協(xié)議, 若為true則不能爬取數(shù)據(jù)ROBOTSTXT_OBEY = False# 設置下載器延遲, 反爬蟲的一種策略DOWNLOAD_DELAY = 0.25# 開啟DOWNLOADER_MIDDLEWARESDOWNLOADER_MIDDLEWARES = { # ’LaGou.middlewares.LagouDownloaderMiddleware’: 543, ’LaGou.middlewares.RandomUserAgentDM’ :100,}# 開啟ITEM_PIPELINESITEM_PIPELINES = { ’LaGou.pipelines.LagouPipeline’: 300,}

啟動爬蟲

scrapy crawl lagou

發(fā)現(xiàn)依然只能5 6頁, 說明拉勾網(wǎng)的反爬確實做得比較好, 還可以繼續(xù)通過使用代理來進行反反爬, 這里就不再演示了,

Python爬蟲實例——scrapy框架爬取拉勾網(wǎng)招聘信息

查看爬取結果

Python爬蟲實例——scrapy框架爬取拉勾網(wǎng)招聘信息

以上就是Python爬蟲實例——scrapy框架爬取拉勾網(wǎng)招聘信息的詳細內容,更多關于Python爬蟲爬取招聘信息的資料請關注好吧啦網(wǎng)其它相關文章!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 国产香蕉视频在线播放 | 午夜激情视频在线 | 最新69成人精品毛片 | 在线欧美v日韩v国产精品v | 99视频在线精品免费观看18 | 青青草视频破解版 | 三级很黄很黄的视频 | 黄色a一片| 亚洲综合图片网 | 日韩精品你懂的在线播放 | 欧美成人a级在线视频 | 亚洲性色综合图区图片 | a级黄毛片 | 欧美日韩国产在线人 | 欧美区亚洲区 | 亚洲国产网址 | 最近手机中文字幕无吗 | 国产精品97 | 欧美性大片免费 | 免费在线看片网站 | 99久久国语对白精品露脸 | 91夜色视频| 免费国产不卡午夜福在线观看 | 高清中国一级毛片免费 | 不卡视频一区二区三区 | 天天怕夜夜怕狠狠怕 | 日本一区二区三区高清福利视频 | 青青青国产在线观看免费 | 综合天天 | 成年人网址在线观看 | 亚欧在线精品免费观看一区 | 一级毛片免费观看久 | 欧美精品国产 | 国产精品香蕉在线观看不卡 | 免费在线观看中日高清生活片 | 69成人做爰免费视频 | 久996视频精品免费观看 | 亚洲va老文色欧美黄大片人人 | 99re最新地址| 月婷婷色狠狠 | japanesefree夫妇互换 |