Supose you have a web page with a lot of this:
<div class="story cid-8797378263432 l-es headline-story thumbnail-true">
where cid-nnnnnnnnnnnn class can vary. How would you get all the divs with BeautifulSoup?
I tried:
soup.find('div', {'class': 'story'})
but that didn't work. Seems to look for the divs with ONLY the story class.