中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Python 爬蟲之數據解析模塊lxml基礎(附:xpath和解析器介紹)

發布時間:2020-06-16 17:23:47 來源:網絡 閱讀:608 作者:insist_way 欄目:編程語言

介紹:

最近在學Python爬蟲,在這里對數據解析模塊lxml做個學習筆記。


lxml、xpath及解析器介紹:

lxml是Python的一個解析庫,支持HTML和XML的解析,支持xpath解析方式,而且解析效率非常高。xpath,全稱XML Path Language,即XML路徑語言,它是一門在XML文檔中查找信息的語言,它最初是用來搜尋XML文檔的,但是它同樣適用于HTML文檔的搜索


xml文件/html文件結點關系:

父節點(Parent)

子節點(Children)

同胞節點(Sibling)

先輩節點(Ancestor)

后代節點(Descendant)


xpath語法:

nodename    選取此節點的所有子節點

//          從任意子節點中選取

/           從根節點選取

.           選取當前節點

..          選取當前節點的父節點

@        選取屬性


解析器比較:

解析器         速度      難度

re                最快      難

BeautifulSoup 慢        非常簡單

lxml                 快        簡單


學習筆記:


# -*- coding: utf-8 -*-


from lxml import etree


html_doc = """

<html><head><title>The Dormouse's story</title></head>

<body>

<p><b>The Dormouse's story</b></p>


<p>Once upon a time there were three little sisters; and their names were

<a href="http://example.com/elsie" class=... ... ... ... ... ... "sister" id="link1">Elsie</a>,

<a href="http://example.com/lacie" id="link2">Lacie</a> and

<a href="http://example.com/tillie" id="link3">Tillie</a>;

and they lived at the bottom of a well.</p>


<p>...</p>

"""


selector = etree.HTML(html_doc)   #創建一個對象


links = selector.xpath('//p[@class="story"]/a/@href')   # 取出頁面內所有的鏈接

for link in links:

    print link


xml_test = """

<?xml version='1.0'?>

<?xml-stylesheet type="text/css" href="first.css"?>

<notebook>

    <user id="1" category='cb' class="dba python linux">

        <name>lizibin</name>

        <sex>m</sex>

        <address>sjz</address>

        <age>28</age>

        <concat>

            <email>konigerwin@163.com</email>

            <phone>135......</phone>

        </concat>

    </user>

    <user id="2" category='za'>

        <name>wsq</name>

        <sex>f</sex>

        <address>shanghai</address>

        <age>25</age>

        <concat>

            <email>konigerwiner@163.com</email>

            <phone>135......</phone>

        </concat>

    </user>

    <user id="3" category='za'>

        <name>liqian</name>

        <sex>f</sex>

        <address>SH</address>

        <age>28</age>

        <concat>

            <email>konigerwinarry@163.com</email>

            <phone>135......</phone>

        </concat>

    </user>

    <user id="4" category='cb'>

        <name>qiangli</name>

        <sex>f</sex>

        <address>SH</address>

        <age>29</age>

        <concat>

            <email>konigerwinarry@163.com</email>

            <phone>135......</phone>

        </concat>

    </user>

    <user id="5" class="dba linux c java python test teacher">

        <name>buzhidao</name>

        <sex>f</sex>

        <address>SH</address>

        <age>999</age>

        <concat>

            <email>konigerwinarry@163.com</email>

            <phone>135......</phone>

        </concat>

    </user>

</notebook>

"""


#r = requests.get('http://xxx.com/abc.xml')   也可以請求遠程服務器上的xml文件

#etree.HTML(r.text.encode('utf-8'))

xml_code = etree.HTML(xml_test)     #生成一個etree對象


#選取所有子節點的name(地址)

print xml_code.xpath('//name')


選取所有子節點的name值(數據)

print xml_code.xpath('//name/text()')

print ''


#以notebook以根節點選取所有數據

notebook = xml_code.xpath('//notebook')


#取出第一個節點的name值(數據)

print notebook[0].xpath('.//name/text()')[0]


addres = notebook[0].xpath('.//name')[0]

#取出和第一個節點同級的 address 值

print addres.xpath('../address/text()')


#選取屬性值

print addres.xpath('../address/@lang')


#選取notebook下第一個user的name屬性

print xml_code.xpath('//notebook/user[1]/name/text()')


#選取notebook下最后一個user的name屬性

print xml_code.xpath('//notebook/user[last()]/name/text()')


#選取notebook下倒數第二個user的name屬性

print xml_code.xpath('//notebook/user[last()-1]/name/text()')


#選取notebook下前兩名user的address屬性

print xml_code.xpath('//notebook/user[position()<3]/address/text()')


#選取所有分類為web的name

print xml_code.xpath('//notebook/user[@category="cb"]/name/text()')


#選取所有年齡小于30的人

print xml_code.xpath('//notebook/user[age<30]/name/text()')


#選取所有class屬性中包含dba的class屬性

print xml_code.xpath('//notebook/user[contains(@class,"dba")]/@class')

print xml_code.xpath('//notebook/user[contains(@class,"dba")]/name/text()')




向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

富宁县| 台中市| 西乌| 石棉县| 集安市| 辽中县| 上犹县| 巢湖市| 绥滨县| 沙河市| 安塞县| 文昌市| 绍兴县| 崇文区| 普兰县| 资溪县| 鄯善县| 新建县| 白水县| 鸡东县| 德格县| 扎鲁特旗| 新巴尔虎右旗| 德庆县| 新安县| 大庆市| 土默特右旗| 壶关县| 清河县| 阳江市| 大洼县| 罗城| 黄梅县| 含山县| 潞西市| 新邵县| 浦江县| 金川县| 阿拉尔市| 湘潭县| 清新县|