![]() |
VOOZH | about |
Prerequisites: Beautifulsoup
Parsing means dividing a file or input into pieces of information/data that can be stored for our personal use in the future. Sometimes, we need data from an existing file stored on our computers, parsing technique can be used in such cases. The parsing includes multiple techniques used to extract data from a file. The following includes Modifying the file, Removing something from the file, Printing data, using the recursive child generator method to traverse data from the file, finding the children of tags, web scraping from a link to extract useful information, etc.
Using the prettify method to modify the HTML code from- https://festive-knuth-1279a2.netlify.app/, look better. Prettify makes the code look in the standard form like the one used in VS Code.
Example:
Output:
👁 ImageA tag can be removed by using the decompose method and the select_one method with the CSS selectors to select and then remove the second element from the li tag and then using the prettify method to modify the HTML code from the index.html file.
Example:
File Used:
👁 parsign htmlOutput:
👁 ImageTags can be found normally and printed normally using print().
Example:
Output:
👁 ImageThe recursiveChildGenerator method is used to traverse tags, which recursively finds all the tags within tags from the file.
Example:
Output:
👁 ImageUsing the name attribute of the tag to print its name and the text attribute to print its text along with the code of the tag- ul from the file.
Example:
Output:
👁 ImageThe Children attribute is used to get the children of a tag. The Children attribute returns 'tags with spaces' between them, we're adding a condition- e. name is not None to print only names of the tags from the file.
Example:
Output:
👁 ImageFinding Children at all levels of a tag:
The Descendants attribute is used to get all the descendants (Children at all levels) of a tag from the file.
Example:
Output:
👁 ImageUsing find_all():
The find_all method is used to find all the elements (name and text) inside the p tag from the file.
Example:
Output:
👁 ImageCSS selectors to find elements:
Using the select method to use the CSS selectors to find the second element from the li tag from the file.
Example: