如何查找仅具有某些属性的标签-BeautifulSoup

如何查找仅具有某些属性的标签-BeautifulSoup,第1张

如何查找仅具有某些属性标签-BeautifulSoup

如BeautifulSoup文档中所述

您可以使用:

soup = BeautifulSoup(html)results = soup.findAll("td", {"valign" : "top"})

编辑:

返回仅具有valign =“ top”属性的标签,可以检查tag

attrs
属性的长度:

from BeautifulSoup import BeautifulSouphtml = '<td valign="top">.....</td>        <td width="580" valign="top">.......</td>        <td>.....</td>'soup = BeautifulSoup(html)results = soup.findAll("td", {"valign" : "top"})for result in results :    if len(result.attrs) == 1 :        print result

返回:

<td valign="top">.....</td>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5643776.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存