python中PyQuery庫用法分享

PyQuery庫就是python中的一個解析庫。作用十分強大,使用上也是相當的靈活,能夠實現初始化字符串、初始化 HTML 文件、初始化請求響應等多種場景,另外,本身中的CSS選擇器,也是經常被大傢使用的對象,結合以上的大致內容總結,接下來,我們一起詳細的瞭解使用內容。

安裝:

>>> pip3 install pyquery

引用方法:

from pyquery import PyQuery as pq

CSS選擇器:

from pyquery import PyQuery as pq
html = '''
<div id="container">
<ul class="list">
<li class="item-0">first item</li>
<li class="item-1"><a href="link2.html" rel="external nofollow" >second item</a></li>
<li class="item-0 active"><a href="link3.html" rel="external nofollow" ><span class="bold">third item</span></a></li>
<li class="item-1 active"><a href="link4.html" rel="external nofollow" >fourth item</a></li>
<li class="item-0"><a href="link5.html" rel="external nofollow" >fifth item</a></li>
</ul>
</div>
'''
doc=pq(html)
print(doc("#container .list li"))

輸出結果:

到此這篇關於python中PyQuery庫用法分享的文章就介紹到這瞭,更多相關python中PyQuery庫是什麼內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: