get all h1 beautifulsoup code example
Example 1: get all h1 beautifulsoup
# to get all h1 from the page
soup = BeautifulSoup('html_file', 'html.parser')
all_h1 = soup.find_all('h1')
Example 2: get all h1 beautifulsoup
# to get all h1 from the page
soup = BeautifulSoup('html_file', 'html.parser')
all_h1 = soup.find_all('h1')