Python爬取链家宁波二手房
时间: 2024-06-05 13:04:28 浏览: 199
要爬取链家宁波二手房信息,你可以使用Python中的requests和BeautifulSoup库来实现。具体步骤如下:
1. 使用requests库发送HTTP请求,获取网页内容;
2. 使用BeautifulSoup库解析网页内容,提取出房源信息;
3. 将提取出的房源信息存储到本地或者数据库中。
在这个过程中,需要注意反爬虫机制,比如设置请求头,使用代理等。
下面是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = "https://nb.lianjia.com/ershoufang/"
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"
}
res = requests.get(url, headers=headers)
soup = BeautifulSoup(res.text, 'html.parser')
house_list = soup.select('.sellListContent li')
for house in house_list:
title = house.select('.title a').text.strip()
price = house.select('.totalPrice span').text.strip()
print(title, price)
```
阅读全文