本文整理匯總了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