get class name beautifull soup div code example
Example 1: beautiful soup get class name
#finding the class of the first div in soup
soup.div['class']
#finding the class of the first p in soup
soup.p['class']
Example 2: how to find class using beautiful soup
mydivs = soup.findAll("div", {"class": "stylelistrow"})