From 6fb6d64e8191912ed80a652175ccf4e7ce9c0b00 Mon Sep 17 00:00:00 2001 From: mjdenkowski Date: Wed, 4 Dec 2013 14:43:50 -0500 Subject: Flush each line --- word-aligner/force_align.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'word-aligner') diff --git a/word-aligner/force_align.py b/word-aligner/force_align.py index d5d59d11..8386e6a5 100755 --- a/word-aligner/force_align.py +++ b/word-aligner/force_align.py @@ -21,9 +21,13 @@ def main(): sys.exit(2) aligner = ForceAligner(*sys.argv[1:]) - - for line in sys.stdin: + + while True: + line = sys.stdin.readline() + if not line: + break sys.stdout.write('{}\n'.format(aligner.align_formatted(line.strip()))) + sys.stdout.flush() aligner.close() -- cgit v1.2.3