写一个python爬虫代码,爬取房天下郑州二手房数据
时间: 2024-06-10 13:06:43 浏览: 160
python 二手房信息爬虫
好的,我可以为您提供一个基于 Python 的爬虫代码,用于爬取房天下郑州二手房数据。以下是代码:
```python
import requests
from lxml import etree
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'}
url = 'https://zz.esf.fang.com/house/i31/'
response = requests.get(url, headers=headers)
html = etree.HTML(response.text)
titles = html.xpath('//p[@class="title"]/a/text()')
prices = html.xpath('//span[@class="price"]/text()')
areas = html.xpath('//span[@class="area"]/text()')
units = html.xpath('//span[@class="unit"]/text()')
for i in range(len(titles)):
print('标题:', titles[i])
print('价格:', prices[i], '元/平米')
print('面积:', areas[i], '平米')
print('单价:', units[i], '元/平米')
print('\n')
```
我希望这段代码能对您有所帮助。如有任何疑问,请随时与我联系。
阅读全文