帮我写个python爬虫爬取招聘信息的代码
时间: 2023-04-02 12:03:44 浏览: 179
抓取某人力资源网站的招聘信息-爬虫python代码
好的,以下是一个简单的 Python 爬虫示例,可以爬取某个招聘网站的职位信息:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.example.com/jobs'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
jobs = soup.find_all('div', class_='job')
for job in jobs:
title = job.find('h2').text.strip()
company = job.find('p', class_='company').text.strip()
location = job.find('p', class_='location').text.strip()
salary = job.find('p', class_='salary').text.strip()
print(title, company, location, salary)
```
请注意,这只是一个示例,实际上爬取招聘信息需要更复杂的代码和技术,而且需要遵守网站的使用条款和法律法规。
阅读全文