Questions tagged «minidom»

9
使用Python最小化获取元素值
我正在使用Python创建Eve Online API的GUI前端。 我已经成功地从他们的服务器中提取了XML数据。 我正在尝试从名为“名称”的节点获取值: from xml.dom.minidom import parse dom = parse("C:\\eve.xml") name = dom.getElementsByTagName('name') print name 这似乎找到了节点,但是输出如下: [<DOM Element: name at 0x11e6d28>] 我如何获得它来打印节点的值?
109 python  dom  minidom 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.