python中PyQuery库用法分享
PyQuery库就是python中的一个解析库。作用十分强大,使用上也是相当的灵活,能够实现初始化字符串、初始化 HTML 文件、初始化请求响应等多种场景,另外,本身中的CSS选择器,也是经常被大家使用的对象,结合以上的大致内容总结,接下来,我们一起详细的了解使用内容。
安装:
>>> pip3 install pyquery
引用方法:
from pyquery import PyQuery as pq
CSS选择器:
from pyquery import PyQuery as pqhtml = ’’’<div id='container'><ul class='list'><li class='item-0'>first item</li><li class='item-1'><a href='https://www.haobala.com/bcjs/link2.html' rel='external nofollow' >second item</a></li><li class='item-0 active'><a href='https://www.haobala.com/bcjs/link3.html' rel='external nofollow' ><span class='bold'>third item</span></a></li><li class='item-1 active'><a href='https://www.haobala.com/bcjs/link4.html' rel='external nofollow' >fourth item</a></li><li class='item-0'><a href='https://www.haobala.com/bcjs/link5.html' rel='external nofollow' >fifth item</a></li></ul></div>’’’doc=pq(html)print(doc('#container .list li'))
输出结果:
到此这篇关于python中PyQuery库用法分享的文章就介绍到这了,更多相关python中PyQuery库是什么内容请搜索好吧啦网以前的文章或继续浏览下面的相关文章希望大家以后多多支持好吧啦网!
相关文章:
1. 在Asp.net core项目中使用WebSocket2. ASP.NET MVC使用异步Action的方法3. JavaScript实现组件化和模块化方法详解4. SpringMVC+Jquery实现Ajax功能5. 利用FastReport传递图片参数在报表上展示签名信息的实现方法6. 使用vue-cli创建项目并webpack打包的操作方法7. python3.8.1+selenium实现登录滑块验证功能8. matplotlib如何设置坐标轴刻度的个数及标签的方法总结9. Python制作一个随机抽奖小工具的实现10. 使用python画出逻辑斯蒂映射(logistic map)中的分叉图案例