python爬虫爬取房星网
时间: 2023-11-24 21:05:54 浏览: 116
星网锐捷笔试面试宝典
以下是使用Python爬虫爬取房天下天津整租租房信息的示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://tj.zu.fang.com/zufang/?renttype=1_0_0'
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'}
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
house_list = soup.find_all('dd', class_='info rel floatr')
for house in house_list:
title = house.find('p', class_='title').find('a').text.strip()
desc = house.find('p', class_='room').text.strip().replace('\n', ' ')
price = house.find('span', class_='price').text.strip()
print(title, desc, price)
```
这段代码使用requests库向目标网站发送请求,然后使用BeautifulSoup库解析HTML文档,最后找到包含房屋标题、具体内容和价格的标签并提取出它们的文本内容。运行代码后,将会输出房屋的标题、具体内容和价格。
阅读全文