beautifulsoup find text in tag code example
Example 1: beautifulsoup find all class
mydivs = soup.findAll("div", {"class": "stylelistrow"})
Example 2: beautifulsoup get text
# Find all of the text between paragraph tags and strip out the html
page = soup.find('p').getText()