本文整理匯總了Python中sys.stdout.buffer方法的典型用法代碼示例。如果您正苦於以下問題:Python stdout.buffer方法的具體用法?Python stdout.buffer怎麽用?Python stdout.buffer使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sys.stdout
的用法示例。
在下文中一共展示了stdout.buffer方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: main
# 需要導入模塊: from sys import stdout [as 別名]
# 或者: from sys.stdout 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: open
# 需要導入模塊: from sys import stdout [as 別名]
# 或者: from sys.stdout import buffer [as 別名]
def open(self):
try:
self.f = stdout.buffer
except Exception as e:
raise SessionException("cant open session: %s" % e)
else:
self.is_open = True