如何使用lxml将命名空间包含到xml文件中?

时间:2017-09-25 12:49:56

标签: python xml lxml

我正在使用python和lxml库从头创建一个新的xml文件。

<route xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.xxxx" version="1.1"
xmlns:stm="http://xxxx/1/0/0"
xsi:schemaLocation="http://xxxx/1/0/0 stm_extensions.xsd">

我需要将此命名空间信息作为路由标记的属性包含在根标记中。

我无法将信息包含在根声明中。

from lxml import etree
root = etree.Element("route",
    xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance",
    xmlns = "http://www.xxxxx",
    version = "1.1",
    xmlns: stm = "http://xxxxx/1/0/0"
)

有一个SyntaxError:无效语法

我该怎么做?

1 个答案:

答案 0 :(得分:1)

以下是如何做到的:

from lxml import etree

attr_qname = etree.QName("http://www.w3.org/2001/XMLSchema-instance", "schemaLocation")
nsmap = {None: "http://www.xxxx",
         "stm": "http://xxxx/1/0/0",
         "xsi": "http://www.w3.org/2001/XMLSchema-instance"}

root = etree.Element("route", 
                     {attr_qname: "http://xxxx/1/0/0 stm_extensions.xsd"},
                     version="1.1", 
                     nsmap=nsmap)

print etree.tostring(root)

此代码的输出(为了便于阅读,添加了换行符):

<route xmlns:stm="http://xxxx/1/0/0"
       xmlns="http://www.xxxx"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://xxxx/1/0/0 stm_extensions.xsd"
       version="1.1"/>

主要&#34;技巧&#34;是使用QName创建xsi:schemaLocation属性。名称中带冒号的属性不能用作关键字参数的名称。

我已将xsi前缀的声明添加到nsmap,但实际上可以省略它。 lxml定义了一些众所周知的名称空间URI的默认前缀,包括xsi的{​​{1}}。