在 Python 中操作 Boost INFO 文件的最佳方法是什么
我有一个 C++ 程序,它读取 Boost INFO file 作为配置文件,现在我计划开发一个 python 脚本来操作这些conf文件。最好的方法是什么?
我在 python 中找不到任何现有模块可以做到这一点,实际上当我在 Google 中输入 Boost INFO 和 Python 时,大多数结果并不那么相关。我什至还没有找到 INFO 的完整语法描述。
由于我是 python 新手,因此用 python 或 C++ 扩展为 python 开发一个解析器来实现这一点似乎需要做太多工作。
预先感谢各位。
I have a C++ program which read a Boost INFO file as a configuration file, and now I'm planning to dev a python script to manipulate those conf files. What's the best way to do it?
I can't find any existing module in python doing that, actually when I type Boost INFO and Python in Google, most of the results are not so relevant. I haven't even found a full syntax description of INFO.
And it's seems too much work to dev a parser in python or C++ extension for python to achieve this as I'm new to python.
Thanks in advance, guys.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题很老了,但我也需要这个,所以我写了一个解析器类。它位于此处。没有错误处理,但只要您的配置文件具有正确的语法,它应该是一个很好的起点。
This question is very old, but I needed this as well, so I wrote a parser class. It is available here. There is no error handling, but as long as your config file has correct syntax, it should be a good starting point.