appleguess 2019-11-27 02:49 采纳率: 0%
浏览 1447

使用过一次find_all 后,在循环中不能再次使用findall了

问题:练习BeautifulSoup的时候练习代码爬大麦网的演唱会信息。使用过一次find_all 后,在循环中不能再次使用findall了
代码:

from bs4 import BeautifulSoup
from selenium import webdriver
browser = webdriver.Chrome()
browser.get('https://search.damai.cn/search.htm?spm=a2oeg.home.category.ditem_0.591b23e11hVMUT&ctl=演唱会&order=1&cty=北京')
html = browser.page_source
soup = BeautifulSoup(html, 'lxml')
perform_list = soup.find_all(class_='items')
perform_dict = []
for perform_item in perform_list:
    show_name = perform_item.find(class_='items__txt__title').find('a').string
    show_time_text = perform_item.find_all(class_='items__txt__time').text

提示:
show_time_text = perform_item.find_all(class_='items__txt__time').text
File "E:\python document\Test\venv\lib\site-packages\bs4\element.py", line 1602, in getattr
"ResultSet object has no attribute '%s'. You're probably treating a list of items like a single item. Did you call find_all() when you meant to call find()?" % key
AttributeError: ResultSet object has no attribute 'text'. You're probably treating a list of items like a single item. Did you call find_all() when you meant to call find()?

请问是为什么呢?

  • 写回答

1条回答

  • 繁华三千东流水 2019-11-27 08:44
    关注

    find_all 获得的是一个列表 你可以指定列表中的一个元素.text试一试。如:perform_item.find_all(class_='items__txt__time')【0】.text

    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀