.findAll() - Python Forum
https://python-forum.io/thread-14103.html17.11.2018 · 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 treati ng a list of items like a single item. Did you call find_all() when you meant to call find()? snippsat, I get this when I try to use findAll.
"AttributeError: 'list' object has no attribute 'findAll'"
stackoverflow.com › questions › 60493837Traceback (most recent call last): File "/Users/noahhollander/Desktop/Web_Scraping/play_by_play.py", line 9, in <module> tbody = soup ('table', {"class":"content"}) [0:].findAll ('tr') AttributeError: 'list' object has no attribute 'findAll' [Finished in 6.207s] I've read that this probably has something to do with this table being text format, but I have added .text at the end and still same result.