soup find word inside paragraph code example
Example: beautifulsoup get text
# Find all of the text between paragraph tags and strip out the html
page = soup.find('p').getText()
# Find all of the text between paragraph tags and strip out the html
page = soup.find('p').getText()