I am trying to extract data from a website using BeautifulSoup.
The website data reads:
<div content-43 class="item-name">This is the text I want to grab</div>
I am currently using:
item_store = soup.find_all("div",{"class":"item-name"})
However it returns the entire line of HTML like the div tags instead of just the text I want.