码迷,mamicode.com
首页 > 编程语言 > 详细

python3 requests 获取 拉勾工作数据

时间:2017-07-04 00:53:37      阅读:435      评论:0      收藏:0      [点我收藏+]

标签:.json   app   code   post   range   nbsp   数据   ict   any   

 1 #-*- coding:utf-8 -*-
 2 __author__ = "carry"
 3 
 4 import requests,json
 5 
 6 for x in range(1, 15):
 7     url =http://www.lagou.com/jobs/positionAjax.json
 8     #proxies = {"http":"http://125.105.17.229:808"}
 9     headers={User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36}
10     payload = {"city":"杭州", "district":"西湖区", "needAddtionalResult":"false", "first":"true", "pn":x, "kd":"测试"}
11     result = requests.post(url,data=payload,headers=headers)
12     #result = requests.post(url,data=payload,proxies=proxies)
13     result_json = result.json()
14     print(result_json)
15 
16     l = result_json["content"]["positionResult"]["result"]
17     for x in l:
18         s = "岗位名称:%s,公司名:%s,业务:%s,工作年限:%s,工资:%s" 19         % (x["positionName"],x["companyFullName"],x["industryField"],x["workYear"],x["salary"])
20 
21         with open("D:\\lagou.txt", "a+", encoding="utf-8") as f:
22             f.write(s)
23             f.write("\n")

 

python3 requests 获取 拉勾工作数据

标签:.json   app   code   post   range   nbsp   数据   ict   any   

原文地址:http://www.cnblogs.com/lxs1314/p/7113509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!