python爬虫拉钩招聘
时间: 2023-12-29 14:04:20 浏览: 152
Python爬取拉钩网职位信息
根据提供的引用内容,以下是一个使用Python进行拉勾网招聘信息爬取的简单示例:
```python
import requests
from bs4 import BeautifulSoup
def get_job_info():
url = 'https://www.lagou.com/zhaopin/会计/'
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'
}
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
job_list = soup.find_all('li', class_='con_list_item')
for job in job_list:
job_title = job.find('div', class_='position').find('h3').text.strip()
job_salary = job.find('div', class_='p_bot').find('span', class_='money').text.strip()
job_company = job.find('div', class_='company').find('div', class_='company_name').text.strip()
print(f"职位:{job_title},薪资:{job_salary},公司:{job_company}")
get_job_info()
```
这个示例使用了requests库发送HTTP请求,并使用BeautifulSoup库解析HTML页面。通过指定URL和请求头,我们可以获取拉勾网上关于“会计”岗位的招聘信息。然后,我们使用BeautifulSoup来提取职位标题、薪资和公司名称,并将其打印出来。
阅读全文