基于python(xpath)的-爬取51job网信息(跳过User-Agent)

本文介绍了一个使用Python爬虫技术从51Job网站抓取Python相关职位信息的方法。通过Requests库发送请求并利用lxml.etree解析网页内容,获取了包括职位名称、公司名称、工作地点、薪资范围及发布时间等关键数据。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

# -*- coding:utf-8 -*-

import requests
from fake_useragent import UserAgent
from lxml import etree

agent = UserAgent()
url = "http://search.51job.com/list/010000%252C020000%252C030200%252C040000%252C080200,000000,0000,00,9,99,python,2,1.html?lang=c&stype=&postchannel=0000&workyear=99&cotype=99&degreefrom=99&jobterm=99&companysize=99&providesalary=99&lonlat=0%2C0&radius=-1&ord_field=0&confirmdate=9&fromType=&dibiaoid=0&address=&line=&specialarea=00&from=&welfare="
response = requests.get(
    url,
    headers={"User-Agent":agent.random},
)
response.encoding = response.apparent_encoding
root = etree.HTML(response.text)
div_list = root.xpath('//div[@class="dw_table"]/div[@class="el"]')

for div in div_list:
    name = div.xpath('p/span/a/text()')[0]
    name = name.strip()
    company = div.xpath('span[@class="t2"]/a/text()')[0]
    place = div.xpath('span[@class="t3"]/text()')[0]
    money = div.xpath('span[@class="t4"]/text()')
    time = div.xpath('span[@class="t5"]/text()')
    # if not money:
    #     money = "面议"
    # else:
    #     money = money[0]
    money = money[0] if money else "面议"
    time = time[0] if time else "没有时间"
    print("职位名:%s" % name)
    print("公司名:%s" % company)
    print("工作地点:%s" % place)
    print("薪资:%s" % money)
    print("上传时间:%s" % time)
    print("----------------------------")
    # with open('job.csv', 'a', encoding='gb18030') as f:
    #     f.write(name+','+company+','+place+','+money+','+time)
    #     f.write('\n')
    with open('51job.csv', 'a', encoding='gb18030') as f:
        im_list = [name,company,place,money,time,'\n']
        f.write(','.join(im_list))

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值