w3resource

Python Web Scraping: Extract h1 tag from example.com

Python Web Scraping: Exercise-6 with Solution

Write a Python program to extract h1 tag from example.com.

Sample Solution:

Python Code:

from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen('http://www.example.com/')
bsh = BeautifulSoup(html.read(), 'html.parser')
print(bsh.h1)

Sample Output:

<h1>Example Domain</h1>
 

Flowchart:

Python Web Scraping Flowchart: Extract h1 tag from example.com

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to display the name of the most recently added dataset on data.gov
Next: Write a Python program to extract and display all the header tags from en.wikipedia.org/wiki/Main_Page

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.