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


Python Munch.items方法代码示例

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


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

示例1: execute_with_lock

# 需要导入模块: from munch import Munch [as 别名]
# 或者: from munch.Munch import items [as 别名]
    def execute_with_lock(self, executable: str, lock: ConnectedConsulLockInformation, *, capture_stdout: bool=False,
                          capture_stderr: bool=False) -> Tuple[int, Optional[bytes], Optional[bytes]]:
        """
        TODO
        :param executable:
        :param lock:
        :param capture_stdout:
        :param capture_stderr:
        :return:
        """
        assert lock is not None
        redirects = Munch(stdout=subprocess.PIPE if capture_stdout else sys.stdout,
                         stderr=subprocess.PIPE if capture_stderr else sys.stderr)

        # Patch for when sys.stdout and sys.stderr have been reassigned (e.g. in IDE test runners)
        non_realtime_redirects: Dict[str, StringIO] = {}
        for name, redirect in redirects.items():
            if isinstance(redirect, StringIO):
                logger.warning(f"Cannot capture {name} in real-time as `sys.{name}` does not have a fileno")
                non_realtime_redirects[name] = redirect
                redirects[name] = subprocess.PIPE

        outputs = Munch(stdout=None, stderr=None)
        with lock:
            process = subprocess.Popen(executable, shell=True, stdout=redirects.stdout, stderr=redirects.stderr)
            outputs.stdout, outputs.stderr = process.communicate()

        # Second part of redirect reassignment patch
        for name, original_redirect in non_realtime_redirects.items():
            captured = outputs[name]
            getattr(sys, name).write(captured.decode("utf-8"))

        return process.returncode, \
               outputs.stdout if capture_stdout else None, \
               outputs.stderr if capture_stderr else None
开发者ID:wtsi-hgi,项目名称:consul-lock,代码行数:37,代码来源:managers.py

示例2: serialize

# 需要导入模块: from munch import Munch [as 别名]
# 或者: from munch.Munch import items [as 别名]
 def serialize(cls, headers: Munch) -> Dict[str, str]:
     if not cls.SERIALIZE_DICT:
         cls.SERIALIZE_DICT = {
             k.lower(): v for k, v in HTTPHeaders.__dict__.items() if str(v).startswith('RDN')
         }
     return {cls.SERIALIZE_DICT[k]: v for k, v in headers.items() if v}
开发者ID:AlphaX-IBS,项目名称:microraiden,代码行数:8,代码来源:header.py


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