Answers for "web scraping print all p and h2 tags"

0

web scraping print all p and h2 tags

import requests
from bs4 import BeautifulSoup
url = 'https://www.python.org/'
reqs = requests.get(url)
soup = BeautifulSoup(reqs.text, 'lxml')
print("List of all the h1, h2, h3 :")
for heading in soup.find_all(["h1", "h2", "h3"]):
    print(heading.name + ' ' + heading.text.strip())
Posted by: Guest on June-26-2020

Browse Popular Code Answers by Language