I would like to display text in a ring-like buffer below a tqdm progress bar. This text would not necessarily be updated with every update of the bar. When using the .write() function of tqdm, text is only printed to the right of the bar, which is not desired. I'm not sure if this is possible with tqdm or not.
I would like it to look like this:
70%|███████ | 7/10 [00:00<00:00, 9.65it/s]
Message 2 ....
Message 3 ....
Message 4 ....
Message 5 ....
When a new Message is printed, Message 2 is deleted and the messages move up in the stack. I'm not tied to tqdm but I have been using it so far.