二刷爬虫—pyquery

作者: zhangyutong_dut | 来源:发表于2018-07-17 14:33 被阅读9次

    pyquery借助于CSS选择器的强大功能

    用类PyQuery对要解析的文本进行初始化

    find()   符合条件的所有子节点

    children()  符合条件的子节点

    parent()   直接父节点

    parents()   所有祖先节点

    siblings()  兄弟节点

    attr()  获取属性

    text()  获取文本

    html()  获取内部的html文本

    addClass() removeClass()    添加/删除类

    attr()  text()  html()  中传入两个参数,对属性/文本/html文本进行修改

    remove()   移除

    伪类选择器

    相关文章

      网友评论

        本文标题:二刷爬虫—pyquery

        本文链接:https://www.haomeiwen.com/subject/yjowpftx.html