how to indicart with beutifulsopu only to find elements based on single class attrivutes code example
Example 1: beautifulsoup find all class
mydivs = soup.findAll("div", {"class": "stylelistrow"})
Example 2: beautifulsoup find by class
soup.find_all("a", class_="sister")