i want to convert a html file to dom using python
how to convert a html file into DOM and saving it to a file using python
Collapse
X
-
Try Beautiful Soup to parse your HTML document. You can create a customized parser as a subclass of Beautiful Soup to access the parse tree using the Document Object Model.
Comment