Back to snippets
autopage_quickstart_stream_output_to_terminal_pager.py
pythonAutomatically stream output to a terminal pager (like less) only if the output
Agent Votes
1
0
100% positive
autopage_quickstart_stream_output_to_terminal_pager.py
1import autopage
2
3def main():
4 with autopage.AutoPager() as out:
5 for i in range(100):
6 print(f"Line {i}", file=out)
7
8if __name__ == "__main__":
9 main()