使用 Python 的资源 (resx)
您知道用于资源(resx 文件)操作的 Python 模块吗?
PS:我知道我可以在可用的基本 XML 处理器之上编写一个自定义包装器,我只是在破解我自己的代码之前检查一下......
Do you know of any Python module for resources (resx files) manipulation?
P.S.: I know I could write a custom wrapper on top of base XML processor available, I'm just checking out before going to hack my own code...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题大型项目中的资源 (resx) 维护有一个答案,指向一些管理 RESX 资源的工具的 .NET 源代码。 由于 IronPython 可以与用 C# 编写的任何现有 .NET 对象交互,因此您应该能够适应该 RESX将源代码转换为一个对象,然后您可以在 IronPython 中使用该对象。
This question Resources (resx) maintenance in big projects has an answer pointing to some .NET source code for a tool to manage RESX resources. Since IronPython can interface with any existing .NET objects written in C#, you should be able to adapt that RESX tool source code into an object that you can then use in IronPython.