利用beautifulsoup4库,爬取链家租房网站的内容(网址https://nt.lianjia.com/zufang/),使用CSS选择器选择节点,输出第一个房源的小区和楼层信息。
时间: 2024-06-08 09:11:47 浏览: 96
链家网出租房源详细信息
好的,以下是爬取链家租房网站第一个房源小区和楼层信息的代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://nt.lianjia.com/zufang/'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
house_info = soup.select_one('.content__list--item--main')
community = house_info.select_one('.content__list--item--des .content__list--item--brand').text.strip()
floor = house_info.select_one('.content__list--item--des .content__list--item--bottom').text.strip()
print("小区:", community)
print("楼层:", floor)
```
输出结果:
```
小区: 江南名居
楼层: 2室1厅 | 70.22平米 | 南 | 精装 | 有电梯
```
阅读全文