Progressbar#

class mvpy.utilities.Progressbar(enabled: bool | int = True, backend: str = 'std', **kwargs)[source]#

Simple class for progress bars that can be enabled or disabled.

Parameters:
enabledbool | int, default=True

Either whether to enable the progressbar or, if int, at which position to place it for tqdm.

backend{“std”, “auto”, “notebook”}, default=”std”

Backend used for tqdm. Use “std” for robust text-based bars, including in Jupyter notebooks. Use “notebook” only if widget support is working properly.

**kwargsAny

Additional arguments for tqdm.