ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Scrapy 项目:腾讯招聘

2020-11-05 19:33:39  阅读:162  来源: 互联网

标签:pageIndex url 招聘 scrapy content Scrapy tencent 腾讯 com


 

 

 

 

 

 

 

目的:

通过爬取腾讯招聘网站(https://careers.tencent.com/search.html)练习Scrapy框架的使用

 

步骤:

1、通过抓包确认要抓取的内容是否在当前url地址中,测试发现内容不在当前url中并且数据格式为json字符串

 

 

 

 

 

 

 

 

 

2、请求url地址过长,考虑去除某些部分,经测试得到

'https://careers.tencent.com/tencentcareer/api/post/Query?keyword=&pageIndex=1&pageSize=10&language=zh-cn&area=cn'

3、寻找url地址,pageIndex=页码,可构造爬虫循环的URL列表

4、书写爬虫代码

  - scrapy startproject tencent tencent.com

  - cd  tencent.com

  - scrapy genspider hr tencent.com

5、保存为CSV文件

 

 

 1 import scrapy
 2 import json
 3 
 4 
 5 class HrSpider(scrapy.Spider):
 6     name = 'hr'
 7     allowed_domains = ['tencent.com']
 8     start_urls = ['https://careers.tencent.com/tencentcareer/api/post/Query?keyword=&pageIndex=1&pageSize=10&language'
 9                   '=zh-cn&area=cn']
10     url = 'https://careers.tencent.com/tencentcareer/api/post/Query?keyword=&pageIndex={' \
11           '}&pageSize=10&language=zh-cn&area=cn '
12     pageIndex = 1
13 
14     def parse(self, response):
15         json_str = json.loads(response.body)
16         for content in json_str["Data"]["Posts"]:
17             content_dic = {"title": content["RecruitPostName"], "location": content["LocationName"],
18                            "date": content["LastUpdateTime"]}
19             print(content_dict)20             yield content_dic
21 
22       
23         if self.pageIndex < 10:
24             self.pageIndex += 1
25             next_url = self.url.format(self.pageIndex)
26             yield scrapy.Request(url=next_url, callback=self.parse)

 

 

运行爬虫

  - scrapy crawl hr

 

 

 

保存命令

  - scrapy crawl hr -o tencent.csv

 

  

 

 

标签:pageIndex,url,招聘,scrapy,content,Scrapy,tencent,腾讯,com
来源: https://www.cnblogs.com/waterr/p/13933488.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有