可以像xsd.exe一样使用generateDS吗
我可以在 python 中使用generateDS.py,就像使用xsd.exe 从xsd 创建C# 类一样吗?
基本上,给定一个 xsd 模式,我想在 python 中创建一个数据结构,填充其数据,然后将其呈现为 xml 字符串。
也许 pyXSD 更好?
哦,是的,我是 python 新手
Can I use generateDS.py in python in a similar way that I would use xsd.exe to create C# classes from xsd?
Basically, given an xsd schema I want to create a data structure, in python, fill its data in, and then render it into an xml string.
perhaps pyXSD is better?
oh, and yes, I'm a python newbie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
generateDS 正是我想要的,一种处理数据对象图的方法,而不是节点图
run
给了我一个 python 类,我可以实例化并填充数据,然后渲染到流。
generateDS did exactly what I wanted it to, a way to deal with a object graph of data, rather than a node graph
ran
gave me a python Class I could instantiate and populate with data, then render to a stream.