python爬取招聘信息
时间: 2023-10-11 22:14:21 浏览: 95
基于python的招聘信息爬取与分析
Python 爬虫可以很方便地爬取招聘信息。以下是一个简单的示例,演示如何使用 Python 和 requests 库从智联招聘网站爬取招聘信息:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://sou.zhaopin.com/?pageSize=60&jl=765&kw=python&kt=3'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
job_list = soup.find('div', class_='contentpile__content__wrapper clearfix').find_all('div', class_='contentpile__content__wrapper__item clearfix')
for job in job_list:
job_name = job.find('a', class_='contentpile__content__wrapper__item__info__box__jobname__title').text.strip()
company_name = job.find('a', class_='contentpile__content__wrapper__item__info__box__cname__title').text.strip()
job_salary = job.find('div', class_='contentpile__content__wrapper__item__info__box__job__saray').text.strip()
job_location = job.find('div', class_='contentpile__content__wrapper__item__info__box__job__demand').find_all('span')[0].text.strip()
job_experience = job.find('div', class_='contentpile__content__wrapper__item__info__box__job__demand').find_all('span')[1].text.strip()
print('职位名称:', job_name)
print('公司名称:', company_name)
print('职位薪资:', job_salary)
print('工作地点:', job_location)
print('工作经验:', job_experience)
print('----------------------------------------')
```
上述代码使用 requests 库发送 HTTP 请求,然后使用 BeautifulSoup 库解析 HTML 文档。该示例从智联招聘网站爬取 python 职位的招聘信息。你可以根据自己的需要修改代码,从其他招聘网站爬取招聘信息。
阅读全文