Python Web Scraping: Extract h1 tag from example.com
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 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?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics