how to convert a html file into DOM and saving it to a file using python

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • new one
    New Member
    • Jul 2010
    • 3

    how to convert a html file into DOM and saving it to a file using python

    i want to convert a html file to dom using python
  • bvdet
    Recognized Expert Specialist
    • Oct 2006
    • 2851

    #2
    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

    Working...