Manage|Multple TQDM Bars
From the "Absurdity Bars" example in mtqdm_tester.py
- Manage TQDM progress bars across an application for clean display
- Make progress meters colorful with built-in color palettes
- Support for Negative progress updates
from mtqdm import Mtqdm
with Mtqdm().open_bar(desc="Doing", total=100) as bar:
while doing_things():
Mtqdm().update_bar(bar)
- Singleton class manages TQDM progress bars across an application
- Support multiple simultaneous bars (hierarchy or in parallel)
- Color can be switched off (uses default monochrome meter)
- Optional auto-total to 100% if process ends early
- Print text below an active bar (good for processs without an available ETA)