python lxml库生成xml文件-节点命名空间问题

lxml库,处理xml很强大,官方文档:https://lxml.de/tutorial.html#namespaces

例如:

我们要生成如下格式的报文:

<ttt:jesson xmlns:ttt="http://www.hellojesson/ttt" guid="33344555677777777777" version="1.0" xsi="http://www.hahaha.com">
  <ttt:order>
    <ttt:orderhead>
      <ttt:guid/>
    </ttt:orderhead>
  </ttt:order>
</ttt:jesson>

就可以参考如下的样例代码实现:

# 导入库
import lxml.etree as etree

# 注册指定命名空间
etree.register_namespace("ttt", "http://www.hellojesson/ttt")
# 生成根节点 root
= etree.Element("{http://www.hellojesson/ttt}jesson", xsi="http://www.hahaha.com", guid="33344555677777777777", version="1.0") # 生成子节点: order = etree.SubElement(root, "{http://www.hellojesson/ttt}order") orderhead = etree.SubElement(order, "{http://www.hellojesson/ttt}orderhead") guid = etree.SubElement(orderhead, "{http://www.hellojesson/ttt}guid") # 节点赋值 order.text = "text" orderhead.text = "111" guid.text = "hello nihao" # 输出 查看效果 print(etree.tostring(root, pretty_print=True))

 

转载于:https://www.cnblogs.com/hellojesson/p/9565349.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值