溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python如何爬取二手房的數(shù)據(jù)

發(fā)布時(shí)間:2022-02-24 14:15:45 來源:億速云 閱讀:169 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)python如何爬取二手房的數(shù)據(jù)的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

一、查找數(shù)據(jù)所在位置:

打開鏈家官網(wǎng),進(jìn)入二手房頁面,選取某個(gè)城市,可以看到該城市房源總數(shù)以及房源列表數(shù)據(jù)。

python如何爬取二手房的數(shù)據(jù)

二、確定數(shù)據(jù)存放位置:

某些網(wǎng)站的數(shù)據(jù)是存放在html中,而有些卻api接口,甚至有些加密在js中,還好鏈家的房源數(shù)據(jù)是存放到html中:

python如何爬取二手房的數(shù)據(jù)

三、獲取html數(shù)據(jù):

通過requests請求頁面,獲取每頁的html數(shù)據(jù)

# 爬取的url,默認(rèn)爬取的南京的鏈家房產(chǎn)信息
url = 'https://nj.***.com/ershoufang/pg{}/'.format(page)
# 請求url
resp = requests.get(url, headers=headers, timeout=10)

 代碼中的網(wǎng)站非真真實(shí)網(wǎng)址,不可直接運(yùn)行!

四、解析html,提取有用數(shù)據(jù):

通過BeautifulSoup解析html,并提取相應(yīng)有用的數(shù)據(jù)

soup = BeautifulSoup(resp.content, 'lxml')
# 篩選全部的li標(biāo)簽
sellListContent = soup.select('.sellListContent li.LOGCLICKDATA')
# 循環(huán)遍歷
for sell in sellListContent:
    # 標(biāo)題
    title = sell.select('div.title a')[0].string
    # 先抓取全部的div信息,再針對每一條進(jìn)行提取
    houseInfo = list(sell.select('div.houseInfo')[0].stripped_strings)
    # 樓盤名字
    loupan = houseInfo[0]
    # 對樓盤的信息進(jìn)行分割
    info = houseInfo[0].split('|')
    # 房子類型
    house_type = info[1].strip()
    # 面積大小
    area = info[2].strip()
    # 房間朝向
    toward = info[3].strip()
    # 裝修類型
    renovation = info[4].strip()
    # 房屋地址
    positionInfo = ''.join(list(sell.select('div.positionInfo')[0].stripped_strings))
    # 房屋總價(jià)
    totalPrice = ''.join(list(sell.select('div.totalPrice')[0].stripped_strings))
    # 房屋單價(jià)
    unitPrice = list(sell.select('div.unitPrice')[0].stripped_strings)[0]

感謝各位的閱讀!關(guān)于“python如何爬取二手房的數(shù)據(jù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI