小白学爬虫笔记6---标签树的遍历

遍历方法

标签树的下行遍历

  • .contents 子节点的列表
  • .children 子节点的迭代类型
  • .descendants 子孙节点的迭代类型

 

samples:

soup = BeautifulSoup(demo, "html.parser")
soup.head
soup.head.contents
soup.body.contents
len(soup.body.contents)
soup.body.contents[1]
for child in soup.body.children:
    do sth

标签树的上行遍历

  • .parent
  • .parents

 

samples:

soup = BeautifulSoup(demo,"html.parser")
soup.title.parent
soup.html.parent # html的父级就是它自己

soup = BeautifulSoup(demo,"html.parser")
for parent in soup.a.parents:
    if parent is null:

    else:
        do sth

标签树的平行遍历

  • .next_sibling
  • .previous_sibling
  • .next_siblings #所有
  • .previous.siblings

 

平行遍历必须发生在同一父节点下 samples:

soup = BeautifulSoup(demo,"html.parser")
soup.a.next_sibling # ' and '   可能存在NavigableString类型
soup.a.next_sibling.next_sibling
soup.a.previous_sibling
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值