在 python 中使用 ConfigParser 重命名 config.ini 部分

发布于 2024-09-13 13:32:06 字数 84 浏览 12 评论 0原文

有没有一种简单的方法可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不再见 2024-09-20 13:32:06

不会。内置的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文