本文整理汇总了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)
示例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