gpt4 book ai didi

python - 忘记一些东西 - Python BeautifulSoup 和 FinViz

转载 作者:行者123 更新时间:2023-12-01 03:20:22 24 4
gpt4 key购买 nike

我在尝试从 a.href 标记中获取文本值时遇到了困难。我已经设法隔离目标值,但当我尝试 get_text() 时不断遇到错误。

import requests
from bs4 import BeautifulSoup

base_url = 'http://finviz.com/screener.ashx?v=152&s=ta_topgainers&o=price&c=0,1,2,3,4,5,6,7,25,63,64,65,66,67'
html = requests.get(base_url)
soup = BeautifulSoup(html.content, "html.parser")
main_div = soup.find('div', attrs = {'id':'screener-content'})
table = main_div.find('table')
sub = table.findAll('tr')
rows = sub[5].findAll('td')
for row in rows:
data = row.a
print data

最佳答案

假设您实际上正在尝试打印 data.get_text(),则 rows 中的某些 row 将会失败 - 因为,在某些情况下,td 单元格中没有子链接元素。您可以检查是否事先找到了链接:

for row in rows:
link = row.a
if link is not None:
print(link.get_text())

请注意,“row”和“rows”可能不是最好的变量名称,因为您实际上是在迭代“cells” - td 元素。

关于python - 忘记一些东西 - Python BeautifulSoup 和 FinViz,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41987946/

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