VOOZH about

URL: https://www.geeksforgeeks.org/python/find-the-text-of-the-given-tag-using-beautifulsoup/

⇱ Find the text of the given tag using BeautifulSoup - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Find the text of the given tag using BeautifulSoup

Last Updated : 30 May, 2022

Web scraping is a process of using software bots called web scrapers in extracting information from HTML or XML content of a web page. Beautiful Soup is a library used for scraping data through python. Beautiful Soup works along with a parser to provide iteration, searching, and modifying the content that the parser provides(in the form of a parse tree). It's fairly easy to crawl through the web pages and to find the text of a given tag using Beautiful Soup. 

In this article, we will discuss finding the text from the given tag.

Step-by-step Approach: 

  • First import the library.
  • Now assign the URL.
  • Fetch the raw HTML content from the URL.
  • Now parse through the content.
  • After the content is parsed we search for a specific tag and print its text.

Below is the complete program.

Output:

👁 Image

Similarly to get all the occurrences of the given tag:

Output:

👁 Image

Comment