How to install xml.dom.minidom in python

installation, python

Solution

Ahh, you don't need PyXML to use it, it's included in the standard library.

>>> import xml.dom.minidom
>>> help(xml.dom.minidom)

Help on module xml.dom.minidom in xml.dom:

NAME
    xml.dom.minidom - Simple implementation of the Level 1 DOM.

DESCRIPTION
    Namespaces and other minor Level 2 features are also supported.

    parse("foo.xml")

    parseString("<foo><bar/></foo>")

    Todo:
    =====
     * convenience methods for getting elements and text.
     * more testing
     * bring some of the writer and linearizer code into conformance with this
            interface
     * SAX 2 namespaces
...
...

Hope this helps!

Problem

I would like to install minidom but I don't know how. Is it part of PyXML? I have tried to use easy install with PyXML but it doesn't seem to work.

Original source