当前位置: 首页>>代码示例>>Python>>正文


Python ConfigFactory.from_dict方法代码示例

本文整理汇总了Python中pyhocon.ConfigFactory.from_dict方法的典型用法代码示例。如果您正苦于以下问题:Python ConfigFactory.from_dict方法的具体用法?Python ConfigFactory.from_dict怎么用?Python ConfigFactory.from_dict使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pyhocon.ConfigFactory的用法示例。


在下文中一共展示了ConfigFactory.from_dict方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_from_dict_with_ordered_dict

# 需要导入模块: from pyhocon import ConfigFactory [as 别名]
# 或者: from pyhocon.ConfigFactory import from_dict [as 别名]
 def test_from_dict_with_ordered_dict(self):
     d = OrderedDict()
     d['banana'] = 3
     d['apple'] = 4
     d['pear'] = 1
     d['orange'] = 2
     config = ConfigFactory.from_dict(d)
     assert config == d
开发者ID:davechina,项目名称:pyhocon,代码行数:10,代码来源:test_config_parser.py

示例2: test_from_dict_with_dict

# 需要导入模块: from pyhocon import ConfigFactory [as 别名]
# 或者: from pyhocon.ConfigFactory import from_dict [as 别名]
 def test_from_dict_with_dict(self):
     d = {
         'banana': 3,
         'apple': 4,
         'pear': 1,
         'orange': 2,
     }
     config = ConfigFactory.from_dict(d)
     assert config == d
开发者ID:davechina,项目名称:pyhocon,代码行数:11,代码来源:test_config_parser.py

示例3: test_from_dict_with_nested_dict

# 需要导入模块: from pyhocon import ConfigFactory [as 别名]
# 或者: from pyhocon.ConfigFactory import from_dict [as 别名]
 def test_from_dict_with_nested_dict(self):
     d = OrderedDict()
     d['banana'] = 3
     d['apple'] = 4
     d['pear'] = 1
     d['tree'] = {
         'a': 'abc\ntest\n',
         'b': [1, 2, 3]
     }
     config = ConfigFactory.from_dict(d)
     assert config == d
开发者ID:vsajip,项目名称:pyhocon,代码行数:13,代码来源:test_config_parser.py

示例4: update_parameters

# 需要导入模块: from pyhocon import ConfigFactory [as 别名]
# 或者: from pyhocon.ConfigFactory import from_dict [as 别名]
def update_parameters(parameters, template_variables, instance_path, param_type):
    updated_parameters = deepcopy(parameters)
    info_variables = set(updated_parameters.keys())
    for variable in info_variables.union(template_variables):
        if variable not in info_variables:
            print("Adding missing variable '%s' to the parameterInfos of instance %s" % (variable, instance_path))
            updated_parameters[variable] = ConfigFactory.from_dict({"type": param_type})
        else:
            if "type" not in updated_parameters[variable]:
                print("Adding missing type for '%s' to the parameterInfos of instance %s" % (variable, instance_path))
                updated_parameters[variable]["type"] = param_type
    return updated_parameters
开发者ID:FRosner,项目名称:cluster-broccoli,代码行数:14,代码来源:templates-0.7.0-to-0.8.0.py

示例5: test_from_dict_with_dict

# 需要导入模块: from pyhocon import ConfigFactory [as 别名]
# 或者: from pyhocon.ConfigFactory import from_dict [as 别名]
 def test_from_dict_with_dict(self):
     d = {"banana": 3, "apple": 4, "pear": 1, "orange": 2}
     config = ConfigFactory.from_dict(d)
     assert config == d
开发者ID:ariloulaleelay,项目名称:pyhocon,代码行数:6,代码来源:test_config_parser.py


注:本文中的pyhocon.ConfigFactory.from_dict方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。