真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python爬蟲入門【16】:鏈家租房數(shù)據(jù)抓取-創(chuàng)新互聯(lián)

1. 寫在前面

作為一個活躍在京津冀地區(qū)的開發(fā)者,要閑著沒事就看看石家莊這個國際化大都市的一些數(shù)據(jù),這篇博客爬取了鏈家網(wǎng)的租房信息,爬取到的數(shù)據(jù)在后面的博客中可以作為一些數(shù)據(jù)分析的素材。
我們需要爬取的網(wǎng)址為:https://sjz.lianjia.com/zufang/

創(chuàng)新互聯(lián)主營利通網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都app軟件開發(fā),利通h5微信平臺小程序開發(fā)搭建,利通網(wǎng)站營銷推廣歡迎利通等地區(qū)企業(yè)咨詢

2. 分析網(wǎng)址

首先確定一下,哪些數(shù)據(jù)是我們需要的

Python爬蟲入門【16】:鏈家租房數(shù)據(jù)抓取

可以看到,×××框就是我們需要的數(shù)據(jù)。

接下來,確定一下翻頁規(guī)律

https://sjz.lianjia.com/zufang/pg1/
https://sjz.lianjia.com/zufang/pg2/
https://sjz.lianjia.com/zufang/pg3/
https://sjz.lianjia.com/zufang/pg4/
https://sjz.lianjia.com/zufang/pg5/
... 
https://sjz.lianjia.com/zufang/pg80/
Python資源分享qun 784758214 ,內(nèi)有安裝包,PDF,學(xué)習(xí)視頻,這里是Python學(xué)習(xí)者的聚集地,零基礎(chǔ),進(jìn)階,都?xì)g迎

3. 解析網(wǎng)頁

有了分頁地址,就可以快速把鏈接拼接完畢,我們采用lxml模塊解析網(wǎng)頁源碼,獲取想要的數(shù)據(jù)。

本次編碼使用了一個新的模塊 fake_useragent ,這個模塊,可以隨機的去獲取一個UA(user-agent),模塊使用比較簡單,可以去百度百度就很多教程。

本篇博客主要使用的是調(diào)用一個隨機的UA

self._ua = UserAgent()
self._headers = {"User-Agent": self._ua.random}  # 調(diào)用一個隨機的UA

由于可以快速的把頁碼拼接出來,所以采用協(xié)程進(jìn)行抓取,寫入csv文件采用的pandas模塊

from fake_useragent import UserAgent
from lxml import etree
import asyncio
import aiohttp
import pandas as pd

class LianjiaSpider(object):

    def __init__(self):
        self._ua = UserAgent()
        self._headers = {"User-Agent": self._ua.random}
        self._data = list()

    async def get(self,url):
        async with aiohttp.ClientSession() as session:
            try:
                async with session.get(url,headers=self._headers,timeout=3) as resp:
                    if resp.status==200:
                        result = await resp.text()
                        return result
            except Exception as e:
                print(e.args)

    async def parse_html(self):
        for page in range(1,77):
            url = "https://sjz.lianjia.com/zufang/pg{}/".format(page)
            print("正在爬取{}".format(url))
            html = await self.get(url)   # 獲取網(wǎng)頁內(nèi)容
            html = etree.HTML(html)  # 解析網(wǎng)頁
            self.parse_page(html)   # 匹配我們想要的數(shù)據(jù)

            print("正在存儲數(shù)據(jù)....")
            ######################### 數(shù)據(jù)寫入
            data = pd.DataFrame(self._data)
            data.to_csv("鏈家網(wǎng)租房數(shù)據(jù).csv", encoding='utf_8_sig')   # 寫入文件
            ######################### 數(shù)據(jù)寫入

    def run(self):
        loop = asyncio.get_event_loop()
        tasks = [asyncio.ensure_future(self.parse_html())]
        loop.run_until_complete(asyncio.wait(tasks))

if __name__ == '__main__':
    l = LianjiaSpider()
    l.run()

上述代碼中缺少一個解析網(wǎng)頁的函數(shù),我們接下來把他補全

    def parse_page(self,html):
        info_panel = html.xpath("http://div[@class='info-panel']")
        for info in info_panel:
            region = self.remove_space(info.xpath(".//span[@class='region']/text()"))
            zone = self.remove_space(info.xpath(".//span[@class='zone']/span/text()"))
            meters = self.remove_space(info.xpath(".//span[@class='meters']/text()"))
            where = self.remove_space(info.xpath(".//div[@class='where']/span[4]/text()"))

            con = info.xpath(".//div[@class='con']/text()")
            floor = con[0]  # 樓層
            type = con[1]   # 樣式

            agent = info.xpath(".//div[@class='con']/a/text()")[0]

            has = info.xpath(".//div[@class='left agency']//text()")

            price = info.xpath(".//div[@class='price']/span/text()")[0]
            price_pre =  info.xpath(".//div[@class='price-pre']/text()")[0]
            look_num = info.xpath(".//div[@class='square']//span[@class='num']/text()")[0]

            one_data = {
                "region":region,
                "zone":zone,
                "meters":meters,
                "where":where,
                "louceng":floor,
                "type":type,
                "xiaoshou":agent,
                "has":has,
                "price":price,
                "price_pre":price_pre,
                "num":look_num
            }
            self._data.append(one_data)  # 添加數(shù)據(jù)
Python資源分享qun 784758214 ,內(nèi)有安裝包,PDF,學(xué)習(xí)視頻,這里是Python學(xué)習(xí)者的聚集地,零基礎(chǔ),進(jìn)階,都?xì)g迎

不一會,數(shù)據(jù)就爬取的差不多了。

Python爬蟲入門【16】:鏈家租房數(shù)據(jù)抓取

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


當(dāng)前文章:Python爬蟲入門【16】:鏈家租房數(shù)據(jù)抓取-創(chuàng)新互聯(lián)
文章地址:http://weahome.cn/article/copjss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部