If you stream a table with ConsoleWithProgress, it works great. But I have more output to display after the table but the 100% progress bar is stuck somehow on the bottom of the screen.
example
lazy_table.stream(...artist=lazy_table.artists.ConsoleWithProgress())
print("Hello world!") # this line will be above the status bar.
I think after the table is printed the cursor is positioned before the status bar and it inserts any additional output before the status bar.
Is there a way to remove the status bar when complete?