gpt4 book ai didi

python - 用 Beautiful Soup 提取 href

转载 作者:太空狗 更新时间:2023-10-29 22:11:50 26 4
gpt4 key购买 nike

我使用此代码来访问我的链接:

links = soup.find("span", { "class" : "hsmall" })
links.findNextSiblings('a')
for link in links:
print link['href']
print link.string

链接没有 ID 或类或其他任何东西,它只是一个带有 href 属性的经典链接。

我的脚本的响应是:

print link['href']
TypeError: string indices must be integers

你能帮我获取 href 值吗?谢谢!

最佳答案

链接仍然指的是你的 soup.find。所以你可以这样做:

links = soup.find("span", { "class" : "hsmall" }).findNextSiblings('a')
for link in links:
print link['href']
print link.string

关于python - 用 Beautiful Soup 提取 href,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7183922/

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