If I am assuming right and you are using
from bs4 import BeautifulSoup
you need to understand that find_all is part of the bs4.element.Tag object
findAll might not work
obj = BeautifulSoup(html_text, 'html.parser')
obj.find_all("tr",{"class":"match"})
This should solve your problem.
3
solved when I write findAll it says: findAll is not defined [closed]