當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。