soup get text code example
Example 1: use beautifulsoup
#start
from bs4 import BeautifulSoup
import requests
req = requests.get('https://www.slickcharts.com/sp500')
soup = BeautifulSoup(req.text, 'html.parser')
Example 2: beautifulsoup get text
# Find all of the text between paragraph tags and strip out the html
page = soup.find('p').getText()