爬取西安雁塔区租房信息

'''
需求,爬取安居客西安区雁塔租房信息(平台为安租客)
需要爬取的信息有:标题、地址、价格、房东名称、面积、付款方式、房东头像链接
'''
import select

import requests
from bs4 import BeautifulSoup
import time
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36'
}
#获取详情页URL的函数
def get_links(url):
res = requests.get(url,headers=headers)
soup = BeautifulSoup(res.text,'lxml')
links = soup.select('div> div.zu-info > h3 > a')
for link in links:
href = link.get('href')
get_info(href)

#获取网页信息的函数
def get_info(url):
res = requests.get(url,headers=headers)
soup = BeautifulSoup(res.text,'lxml')
titles = soup.select('div.wrapper > h1 > div') #标题
addresses = soup.select('div.lbox > ul.house-info-zufang.cf > li> a') #地址
prices = soup.select('span.price > em > b') #价格
names = soup.select('div.broker-card > div > h2') #房东名称
areas = soup.select('span.info-tag.no-line > em > b') #面积
types = soup.select('li.full-line.cf > span.type') #付款类型
imgs = soup.select('div.broker-card > div > img')#房东头像链接

for title, address, price, name, area,typ,img in zip(titles, addresses, prices, names,areas,types, imgs):
data = {
'标题' : title.get_text(),
'地址' : address.get_text(),
'面积' : area.get_text(),
'价格' : price.get_text(),
'付款类型' : typ.get_text().strip(),
'房东名称' : name.get_text().strip(),
'房东头像' : img.get('src')

}
print(data)
if __name__ == '__main__':
urls = ['https://xa.zu.anjuke.com/fangyuan/yantaqu/p{}'.format(str(num)) for num in range(1,2)]
for url in urls:
get_links(url)
time.sleep(2)
上一篇:2021-09-04


下一篇:青客公寓挂牌房源分城市爬取