gpt4 book ai didi

python - BeautifulSoup 无法正常工作

转载 作者:太空宇宙 更新时间:2023-11-03 15:54:05 24 4
gpt4 key购买 nike

我在使用 BeautifulSoup 时遇到问题。我正在尝试从该网站提取每个表的数据:http://www.fantagazzetta.com/voti-serie-a/2016-17/6

然而,BeautifulSoup 跳过了很多行代码,这是我的 python 脚本:

from bs4 import BeautifulSoup
import requests

url = requests.get('http://www.fantagazzetta.com/voti-serie-a/2016-17/4')
soup = BeautifulSoup(url.text, 'lxml')
data = soup.find_all('div',{'class':'row no-gutter tbvoti'})
print(data)

我的输出是这样的:

<div class="row no-gutter tbvoti" data-team="1" id="Ata"></div>

如何提取每个表中的代码?感谢并抱歉我的英语

enter image description here

我的意思是它跳过::before 和::after 之间的代码,我想提取它。

最佳答案

您应该迭代列表 find_all 返回:

from bs4 import BeautifulSoup
import requests

url = requests.get('http://www.fantagazzetta.com/voti-serie-a/2016-17/4')
soup = BeautifulSoup(url.text, 'lxml')
data = soup.find_all('div',{'class':'row no-gutter tbvoti'})

print(' '.join([str(part) for part in data]))

关于python - BeautifulSoup 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40958737/

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