我想安装minidom,但我不知道怎么做。它是PyXML的一部分吗?
我曾尝试使用PyXML轻松安装,但它似乎无法正常工作。
答案 0 :(得分:1)
实际上这是Python standard Library。
的一部分答案 1 :(得分:1)
啊,你不需要PyXML来使用它,它包含在标准库中。
>>> 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
...
...
希望这有帮助!