VOOZH about

URL: https://www.geeksforgeeks.org/python/pretty-printing-in-beautifulsoup/

⇱ Pretty-Printing in BeautifulSoup - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Pretty-Printing in BeautifulSoup

Last Updated : 23 Jul, 2025

Prerequisite:

In this article, we will learn about how to print pretty in BeautifulSoup Using Python. The requests library is an integral part of Python for making HTTP requests to a specified URL. Whether it be REST APIs or Web Scraping, requests are must be learned for proceeding further with these technologies. When one makes a request to a URI, it returns a response. Python requests provide inbuilt functionalities for managing both the request and response.

pip install requests

Beautiful Soup is a Python library designed for quick turnaround projects like screen-scraping.

pip install beautifulsoup4

What is Pretty Printing?

In simple words we can say, It prettifies the HTML with proper indents and everything.

Let's Understand Step by step implementation:-

  • Import Required Module
  • Parse HTML Content
  • Pretty the HTML Code. BeautifulSoup has a prettify() method.

The prettify() method will turn a Beautiful Soup parse tree into a nicely formatted Unicode string, with a separate line for each tag and each string:

Below is the implementation:

Comment
Article Tags: