sjmikler / progress-table

Display progress as a pretty table in the command line.
MIT License
98 stars 3 forks source link

[FEATURE] Allow user printing their stuff while table is progressing #13

Closed sjmikler closed 8 months ago

sjmikler commented 8 months ago

Tqdm has their tqdm.write() that allows you to print stuff without breaking progress bars.

We could use a similar solution to allow user to print without breaking the table and progress bars.

sjmikler commented 8 months ago

This feature is being added in version 1.2.

Use

table.write(...)

to handle printing gracefully while progressing in a table. Table will be closed and reopened afterwise.

obraz