Open In App

BeautifulSoup – Scraping Paragraphs from HTML

In this article, we will discuss how to scrap paragraphs from HTML using Beautiful Soup

Method 1: using bs4 and urllib.



Module Needed:

pip install bs4.
pip install urllib

The html file contains several tags and like the anchor tag <a>, span tag <span>, paragraph tag <p> etc. So, the beautiful soup helps us to parse the html file and get our desired output such as getting the paragraphs from a particular url/html file.



Explanation: 

After importing the modules urllib and bs4 we will provide a variable with a url which is to be read, the urllib.request.urlopen() function forwards the requests to the server for opening the url. BeautifulSoup() function helps us to parse the html file or you say the encoding in html. The loop used here with find_all() finds all the tags containing paragraph tag <p></p> and the text between them are collected by the get_text() method.

Below is the implementation:




# importing modules
import urllib.request 
from bs4 import BeautifulSoup
  
# providing url
  
# opening the url for reading
html = urllib.request.urlopen(url)
  
# parsing the html file
htmlParse = BeautifulSoup(html, 'html.parser')
  
# getting all the paragraphs
for para in htmlParse.find_all("p"):
    print(para.get_text())

Output:

Methods 2: using requests and bs4

Module Needed:

pip install bs4
pip install requests

Approach:

Code:




# import module 
import requests 
import pandas as pd 
from bs4 import BeautifulSoup 
  
# link for extract html data 
def getdata(url): 
    r = requests.get(url) 
    return r.text 
  
soup = BeautifulSoup(htmldata, 'html.parser'
data = '' 
for data in soup.find_all("p"): 
    print(data.get_text()) 

Output:


Article Tags :