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


Python stdin.buffer方法代码示例

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


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

示例1: main

# 需要导入模块: from sys import stdin [as 别名]
# 或者: from sys.stdin import buffer [as 别名]
def main():
    parser = argument_parser()
    args = parser.parse_args()

    output = TaggedOutput(stdout.buffer)

    result = dumps({
        "environ": dict(environ),
        "probe-urls": list(probe_urls(args.probe_url)),
        "probe-commands": list(probe_commands(args.probe_command)),
        "probe-paths": list(probe_paths(args.probe_path)),
    })

    output.write(result)

    for (port, value) in zip(args.http_port, args.http_value):
        run_http_server(port, value)

    run_http_server(9876, "sidecar")

    read_and_respond(stdin.buffer, output)
    print("Goodbye.")
    exit(args.exit_code) 
开发者ID:telepresenceio,项目名称:telepresence,代码行数:25,代码来源:probe_endtoend.py

示例2: __call__

# 需要导入模块: from sys import stdin [as 别名]
# 或者: from sys.stdin import buffer [as 别名]
def __call__(self, path):
        
        path = expanduser(path)
        
        if path == '/dev/stdout' and 'a' in self.mode:
            
            self.mode = self.mode.replace('a', 'w')
        
        if path == '-':
            
            if 'r' in self.mode:
                file_obj = stdin.buffer if 'b' in self.mode else stdin
            else:
                file_obj = fdopen(dup(stdout.fileno()), 'wb' if 'b' in self.mode else 'w')
                dup2(stderr.fileno(), stdout.fileno())
            return file_obj
        
        elif path[-3:] != '.gz':
            
            file_obj = open(path, self.mode)
        
        else:
            
            file_obj = gzip.open(path, {'r': 'rt', 'a': 'at'}.get(self.mode, self.mode))
        
        file_obj.appending_to_file = bool(exists(path) and getsize(path))
        
        return file_obj 
开发者ID:P1sec,项目名称:QCSuper,代码行数:30,代码来源:_utils.py


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