python爬虫链家长沙租房
时间: 2023-12-29 09:26:08 浏览: 169
python爬取链家网租房数据
5星 · 资源好评率100%
根据提供的引用内容,以下是一个使用Python爬虫爬取链家网上长沙租房信息的示例:
```python
import requests
from bs4 import BeautifulSoup
# 设置请求头
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36'
}
# 发送请求并获取网页内容
url = 'https://cs.lianjia.com/zufang/'
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
# 解析网页内容,获取租房信息
house_list = soup.find_all('div', class_='content__list--item--main')
for house in house_list:
title = house.find('p', class_='content__list--item--title').text.strip()
price = house.find('span', class_='content__list--item-price').text.strip()
print('标题:', title)
print('价格:', price)
print('--')
```
这段代码使用requests库发送HTTP请求,然后使用BeautifulSoup库解析HTML内容。通过查找特定的HTML元素,我们可以提取出租房的标题和价格信息,并将其打印出来。
阅读全文