博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python lxml库生成xml文件-节点命名空间问题
阅读量:5901 次
发布时间:2019-06-19

本文共 761 字,大约阅读时间需要 2 分钟。

lxml库,处理xml很强大,官方文档:

例如:

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

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

# 导入库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

你可能感兴趣的文章
ubuntu下安装libxml2
查看>>
nginx_lua_waf安装测试
查看>>
WinForm窗体缩放动画
查看>>
JQuery入门(2)
查看>>
linux文件描述符
查看>>
传值引用和调用引用的区别
查看>>
hyper-v 无线网连接
查看>>
Python3.7.1学习(六)RabbitMQ在Windows环境下的安装
查看>>
Windows下memcached的安装配置
查看>>
ubuntu: firefox+flashplay
查看>>
web.xml 中CharacterEncodingFilter类的学习
查看>>
贪吃蛇逻辑代码
查看>>
实现c协程
查看>>
ASP.NET视频教程 手把手教你做企业论坛网站 视频教程
查看>>
[LeetCode] Meeting Rooms II
查看>>
从Swift学习iOS开发的路线指引
查看>>
Scribes:小型文本编辑器,支持远程编辑
查看>>
ssh 安装笔记
查看>>
3-继承
查看>>
海归千千万 为何再无钱学森
查看>>