gpt4 book ai didi

python - 使用 BeautifulSoup 获取 span 标签的值

转载 作者:可可西里 更新时间:2023-11-01 12:59:35 25 4
gpt4 key购买 nike

我有许多 facebook 群组,我想了解其中的成员数量。一个例子是这个组:https://www.facebook.com/groups/347805588637627/我查看了页面上的检查元素,它是这样存储的:

<span id="count_text">9,413 members</span>

我正在尝试从页面中删除“9,413 名成员”。我试过使用 BeautifulSoup 但无法解决。

谢谢

编辑:

from bs4 import BeautifulSoup
import requests

url = "https://www.facebook.com/groups/347805588637627/"
r = requests.get(url)
data = r.text
soup = BeautifulSoup(data, "html.parser")
span = soup.find("span", id="count_text")
print(span.text)

最佳答案

如果页面中有多个 span 标签:

from bs4 import BeautifulSoup
soup = BeautifulSoup(your_html_input, 'html.parser')
span = soup.find("span", id="count_text")
span.text

关于python - 使用 BeautifulSoup 获取 span 标签的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42175190/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com