BeautifulSoup Search and Find a Text String in HTML/Page
page.find_all(True) – returns all html tags in the beautifulsoup html page if word in i.text: – check for a match in every tag’s text component, wrapped in try/fail in case a tag has no text component.