在 python 中使用 ConfigParser 重命名 config.ini 部分
有没有一种简单的方法可以使用 python 中的 ConfigParser 重命名配置文件中的部分?我不想删除该部分并重新创建它,但这是我现在唯一的答案。
Is there an easy way to rename a section in a config file using ConfigParser in python? I'd prefer not to have to delete the section and recreate it, but that is my only answer right now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。内置的 ConfigParser 将节存储为
_sections
,它是一个字典。由于这是 python,您可以访问该变量来进行简单的复制。(
config._sections[new_name] = config._sections[old_name]; config._sections.pop(old_name)
但是 ConfigParser 可能会在以后发生变化,这会破坏你的实现。
因此我不建议这样做,或者您可以子类化 ConfigParser 并实现 delete_section 或更改选项的存储方式。
No. The builtin ConfigParser stores sections as
_sections
, which is a dict. Since this is python you could access that variable to do an easy copy.(
config._sections[new_name] = config._sections[old_name]; config._sections.pop(old_name)
But ConfigParser may change at some later date and this would break your implementation.
Therefore I don't recommend doing that, alternatively you could subclass ConfigParser and implement a delete_section or change the way options are stored.