python爬取房屋信息
时间: 2023-11-12 18:57:04 浏览: 129
如何使用 python 爬取全国小区名称
要使用Python爬取房屋信息,你可以使用爬虫库(如Requests、BeautifulSoup、Selenium等)来获取网页内容,并从中提取所需的房屋信息。以下是一个简单的示例代码,以爬取某个网站上的房屋标题和价格为例:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://example.com/houses' # 替换为你要爬取的网页URL
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
house_list = soup.find_all('div', class_='house') # 根据网页结构找到所有房屋信息的HTML元素
for house in house_list:
title = house.find('h2').text # 提取标题文本
price = house.find('span', class_='price').text # 提取价格文本
print(f'Title: {title}, Price: {price}')
```
阅读全文