本文整理汇总了Python中rmtoo.lib.configuration.Cfg.Cfg.get_value方法的典型用法代码示例。如果您正苦于以下问题:Python Cfg.get_value方法的具体用法?Python Cfg.get_value怎么用?Python Cfg.get_value使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类rmtoo.lib.configuration.Cfg.Cfg
的用法示例。
在下文中一共展示了Cfg.get_value方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from rmtoo.lib.configuration.Cfg import Cfg [as 别名]
# 或者: from rmtoo.lib.configuration.Cfg.Cfg import get_value [as 别名]
def __init__(self, topic_set, params):
self.topic_set = topic_set
cfg = Cfg(params)
self.output_dir = cfg.get_value('output_directory')
self.html_header_filename = cfg.get_value('header')
self.html_footer_filename = cfg.get_value('footer')
self.read_html_arts()
示例2: __init__
# 需要导入模块: from rmtoo.lib.configuration.Cfg import Cfg [as 别名]
# 或者: from rmtoo.lib.configuration.Cfg.Cfg import get_value [as 别名]
def __init__(self, topic_set, params):
self.topic_set = topic_set
cfg = Cfg(params)
self.output_filename = cfg.get_value('output_filename')
self.effort_factor = cfg.get_value_default('effort_factor', 1)
self.req_ids = {}
self.next_id = 1
示例3: __init__
# 需要导入模块: from rmtoo.lib.configuration.Cfg import Cfg [as 别名]
# 或者: from rmtoo.lib.configuration.Cfg.Cfg import get_value [as 别名]
def __init__(self, config):
tracer.info("called")
cfg = Cfg(config)
self.__start_vers = cfg.get_value("start_vers")
self.__end_vers = cfg.get_value("end_vers")
self.__topic_root_node = cfg.get_value("topic_root_node")
tracer.debug("start version [%s] end version [%s] "
"topic root node [%s]"
% (self.__start_vers, self.__end_vers,
self.__topic_root_node))
# When the directory is not absolute, convert it to an
# absolute path that it can be compared to the outcome of the
# git.Repo.
self.__dirs = {}
self.__repo_base_dir = None
self.__repo = None
self.__setup_directories(cfg)
示例4: rmttest_empty_configuration
# 需要导入模块: from rmtoo.lib.configuration.Cfg import Cfg [as 别名]
# 或者: from rmtoo.lib.configuration.Cfg.Cfg import get_value [as 别名]
def rmttest_empty_configuration(self):
'''Checks the empty configuration with different types of parameters'''
config = Cfg()
with pytest.raises(RMTException):
config.get_value("k")
with pytest.raises(RMTException):
config.get_value("k.i")
with pytest.raises(RMTException):
config.get_value("k.i.j")
with pytest.raises(RMTException):
config.get_value(['k'])
with pytest.raises(RMTException):
config.get_value(['k', 'i'])
with pytest.raises(RMTException):
config.get_value(['k', 'i', 'j'])