我需要在运行时通过ConfigParser
Python 中的库生成的配置文件中写一些注释。
我想写一个完整的描述性评论,例如:
########################
# FOOBAR section
# do something
########################
[foobar]
bar = 1
foo = hallo
代码应如下所示:
我在同一时刻插入评论和配置选项的地方。
import ConfigParser
config = ConfigParser.ConfigParser()
config.insert_comment("##########################") # This function is purely hypothetical
config.insert_comment("# FOOBAR section ")
....
config.add_section('foobar')
config.set('foobar', 'bar', '1')
config.set('foobar', 'foo', 'hallo')