我正在使用 pyhocon 创建一个 hocon conf 文件。(https://github.com/chimpler/pyhocon)。
我正在尝试使用标准 hocon 文件来构建 hocon 文件,更新必要的值并上传更新的文件。
deployment {
proxy {
// Name has to be replaced with the name of the project
cluster.TEST {
property1 = [a_list]
property2.host = "hostname"
}
}
}
我可以使用 pyhocon 更新值:
from pyhocon import ConfigFactory
conf = ConfigFactory.parse_string(hocon_file_template)
host = "something-TEST.trial.com"
conf.put('deployment.proxy.cluster.TEST.property2.host', host)
new = HOCONConverter.convert(conf, "hocon")
但是,转换后的文件摆脱了点符号并输出:
deployment {
proxy {
// Name has to be replaced with the name of the project
cluster {
TEST {
property1 = [a_list]
property2.host = "hostname"
}
}
}
}
如何以点表示法维护属性?