您现在的位置是:课程教程文章

python中PyQuery库是什么?

2023-12-15 21:04课程教程文章 人已围观

 

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

安装:

>>> 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">second item</a></li>
<li class="item-0 active"><a href="link3.html"><span class="bold">third item</span></a></li>
<li class="item-1 active"><a href="link4.html">fourth item</a></li>
<li class="item-0"><a href="link5.html">fifth item</a></li>
</ul>
</div>
'''
doc=pq(html)
print(doc("#container .list li"))

输出结果:

 

好啦,以上就是PyQuery库的全部使用方式了,感兴趣的小伙伴可以多了解学习下哦~

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

课程教程:python中PyQuery库是什么?

上一篇:python中pdb模块怎么用?

下一篇:没有了

站点信息

  • 文章统计篇文章