Beautiful Soup 的 find_parents(~)
方法沿着解析树向上工作,找到特定标签或字符串的父级。
参数
1.name
| string
| optional
要返回的标签的名称。
2. attrs
| string
| optional
要过滤的标签属性。
3. string
| string
| optional
要搜索的字符串(而不是标签)。
4. limit
| number
| optional
要返回的元素数量。默认为所有匹配。
例子
考虑以下 HTML 文档:
my_html = """
<div>
<p id="alex">Alex</p>
<p class="Bob">Bob</p>
<p id="cathy">Cathy</p>
</div>
"""
soup = BeautifulSoup(my_html, "html.parser")
名称参数
要检索字符串 "Bob"
的 "div"
父标签:
bob_string = soup.find(string="Bob")
bob_string.find_parents("div")
[<div>
<p id="alex">Alex</p>
<p class="Bob">Bob</p>
<p id="cathy">Cathy</p>
</div>]
极限参数
要将字符串 "Bob"
的父项数量限制为 1:
bob_string = soup.find(string="Bob")
bob_string.find_parents(limit=1)
[<p class="Bob">Bob</p>]
相关用法
- Python BeautifulSoup find_parent方法用法及代码示例
- Python BeautifulSoup find_previous_sibling方法用法及代码示例
- Python BeautifulSoup find_next方法用法及代码示例
- Python BeautifulSoup find_all_next方法用法及代码示例
- Python BeautifulSoup find_next_sibling方法用法及代码示例
- Python BeautifulSoup find_all方法用法及代码示例
- Python string find()用法及代码示例
- Python BeautifulSoup find方法用法及代码示例
- Python NumPy finfo方法用法及代码示例
- Python calendar firstweekday()用法及代码示例
- Python NumPy fill_diagonal方法用法及代码示例
- Python filecmp.cmpfiles()用法及代码示例
- Python fileinput.filelineno()用法及代码示例
- Python fileinput.lineno()用法及代码示例
- Python fileinput.input用法及代码示例
- Python NumPy fix方法用法及代码示例
- Python fileinput.isfirstline()用法及代码示例
- Python fileinput.input()用法及代码示例
- Python fileinput.filename()用法及代码示例
- Python filter()用法及代码示例
- Python NumPy fliplr方法用法及代码示例
- Python dict fromkeys()用法及代码示例
- Python frexp()用法及代码示例
- Python functools.wraps用法及代码示例
注:本文由纯净天空筛选整理自Arthur Yanagisawa大神的英文原创作品 BeautifulSoup | find_parents method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。