In BeautifulSoup you can search by using soup.find_all. For example I searched a page by using
soup.find_all("tr", "cat-list-row1")
That, obviously, brought every tr class that had the name cat-list-row1. I was wanting to know if it is possible to search the whole page for any class that is named "cat-list-row1" instead of limiting it to just classes where the element is "tr".