I\'m having trouble parsing HTML elements with \"class\" attribute using Beautifulsoup. The code looks like this
soup = BeautifulSoup(sdata) mydivs = soup.fi
You can refine your search to only find those divs with a given class using BS3:
mydivs = soup.findAll("div", {"class": "stylelistrow"})