VOOZH about

URL: https://www.geeksforgeeks.org/python/how-to-delete-child-element-in-beautifulsoup/

⇱ How to delete child element in BeautifulSoup? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to delete child element in BeautifulSoup?

Last Updated : 3 Mar, 2021

Beautifulsoup is a Python library used for web scraping. This powerful python tool can also be used to modify html webpages. This article depicts how beautifulsoup can be employed to delete child element. For this, various methods of the module is used.

Methods Used:

  • clear(): Tag.clear() deletes the tag from the tree of a given HTML document.
  • decompose(): Tag.decompose() removes a tag from the tree of a given HTML document, then completely destroys it and its contents.
  • replace(): Tag.replace() replaces a particular tag with a new tag.

Approach:

  • Import module.
  • Scrap data from webpage.
  • Parse the string scraped to html.
  • Find the tag whose child element to be deleted.
  • Use any of the methods: clear(), decompose() or replace().
  • Print replaced content.

Example 1:

Output:

<div id="parent"></div>

Example 2:

Output:

<None></None>

Example 3:

Output:

<div id="parent">
<p>
 This is child of div with id = "parent".
 <span>Child of "P"</span>
</p>
<div>
 Another Child of div with id = "parent".
 </div>
</div>
Comment