how to get text from paragraph in bs4 code example
Example 1: beautifulsoup get text
# Find all of the text between paragraph tags and strip out the html
page = soup.find('p').getText()
Example 2: scrape all the p tags in a python
article = ''for i in content.findAll('p'): article = article + ' ' + i.text