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


Python Util.string_to_dict方法代码示例

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


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

示例1: __init__

# 需要导入模块: from stetl.util import Util [as 别名]
# 或者: from stetl.util.Util import string_to_dict [as 别名]
    def __init__(self, configdict, section):
        FileInput.__init__(self, configdict, section, produces=FORMAT.string)
        self.file = None

        # Optional formatting of content according to Python String.format()
        # Input file should have substitutable values like {schema} {foo}
        # format_args should be of the form format_args = schema:test foo:bar
        if self.format_args:
            # Convert string to dict: http://stackoverflow.com/a/1248990
            self.format_args = Util.string_to_dict(self.format_args, ':')
开发者ID:geopython,项目名称:stetl,代码行数:12,代码来源:fileinput.py

示例2: __init__

# 需要导入模块: from stetl.util import Util [as 别名]
# 或者: from stetl.util.Util import string_to_dict [as 别名]
    def __init__(self, configdict, section):
        StringFilter.__init__(self, configdict, section, consumes=FORMAT.string, produces=FORMAT.string)

        # Formatting of content according to Python String.format()
        # String should have substitutable values like {schema} {foo}
        # format_args should be of the form format_args = schema:test foo:bar ...
        self.format_args = self.cfg.get('format_args')

        # Convert string to dict: http://stackoverflow.com/a/1248990
        self.format_args_dict = Util.string_to_dict(self.format_args, ':')
开发者ID:Why-Not-Sky,项目名称:stetl,代码行数:12,代码来源:stringfilter.py

示例3: execute_cmd

# 需要导入模块: from stetl.util import Util [as 别名]
# 或者: from stetl.util.Util import string_to_dict [as 别名]
    def execute_cmd(self, cmd):
        env_vars = Util.string_to_dict(self.env_args, self.env_separator)
        old_environ = os.environ.copy()

        try:
            os.environ.update(env_vars)
            log.info("executing cmd=%s" % Util.safe_string_value(cmd))
            subprocess.call(cmd, shell=True)
            log.info("execute done")
        finally:
            os.environ = old_environ
开发者ID:geopython,项目名称:stetl,代码行数:13,代码来源:execoutput.py

示例4: execute_cmd

# 需要导入模块: from stetl.util import Util [as 别名]
# 或者: from stetl.util.Util import string_to_dict [as 别名]
    def execute_cmd(self, cmd):
        env_vars = Util.string_to_dict(self.env_args, self.env_separator)
        old_environ = os.environ.copy()

        try:
            os.environ.update(env_vars)
            log.info("executing cmd=%s" % cmd)
            result = subprocess.check_output(cmd, shell=True)
            log.info("execute done")
            return result
        finally:
            os.environ = old_environ
开发者ID:fsteggink,项目名称:stetl,代码行数:14,代码来源:execfilter.py

示例5: parse_args

# 需要导入模块: from stetl.util import Util [as 别名]
# 或者: from stetl.util.Util import string_to_dict [as 别名]
def parse_args(args_list):
    log.info("Stetl version = %s" % __version__)

    argparser = argparse.ArgumentParser(description='Invoke Stetl')
    argparser.add_argument('-c ', '--config', type=str, help='ETL config file in .ini format', dest='config_file',
                           required=False)

    argparser.add_argument('-s ', '--section', type=str, help='Section in the config file to execute, default is [etl]',
                           dest='config_section', required=False)

    argparser.add_argument('-a ', '--args', type=str,
                           help='Arguments or .properties files to be substituted for symbolic {argN}s in Stetl config file,\
                                as -a "arg1=foo arg2=bar" and/or -a args.properties, multiple -a options are possible',
                           dest='config_args', required=False, action='append')

    argparser.add_argument('-d ', '--doc', type=str,
                           help='Get component documentation like its configuration parameters, e.g. stetl doc stetl.inputs.fileinput.FileInput',
                           dest='doc_args', required=False)

    argparser.add_argument('-v', '--version',
                           action='store_true',
                           help='Show current version of stetl and exit',
                           required=False)

    args = argparser.parse_args(args_list)

    if args.config_args:
        args_total = dict()
        for arg in args.config_args:
            if os.path.isfile(arg):
                log.info('Found args file at: %s' % arg)
                args_total = Util.merge_two_dicts(args_total, Util.propsfile_to_dict(arg))
            else:
                # Convert string to dict: http://stackoverflow.com/a/1248990
                args_total = Util.merge_two_dicts(args_total, Util.string_to_dict(arg))

        args.config_args = args_total

    return args
开发者ID:geopython,项目名称:stetl,代码行数:41,代码来源:main.py

示例6: __init__

# 需要导入模块: from stetl.util import Util [as 别名]
# 或者: from stetl.util.Util import string_to_dict [as 别名]
    def __init__(self, configdict, section):
        StringFilter.__init__(self, configdict, section, consumes=FORMAT.string, produces=FORMAT.string)

        # Convert string to dict: http://stackoverflow.com/a/1248990
        self.format_args_dict = Util.string_to_dict(self.format_args, self.separator)
开发者ID:fsteggink,项目名称:stetl,代码行数:7,代码来源:stringfilter.py


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