Home
Overview
Fundamentals
Glossary
Cheatsheet
API Reference
Quick Recipes
Deep Dive
Common Pitfalls and Gotchas
Persistent Storage
Configuration for how tqdm should behave when reporting is active.
Attributes:
suppress_file: If True (default), suppresses tqdm's terminal output by
routing it to devnull, unless the user explicitly passes a `file=`
kwarg.
suppress_display: If True (default), suppresses tqdm's IPython/Colab
widget display, unless the user explicitly passes `display=True`.
mininterval: If set, overrides the default `mininterval` for the setup
progress bar, unless explicitly provided by the user.
maxinterval: If set, overrides the default `maxinterval` for the setup
progress bar, unless explicitly provided by the user.
miniters: If set, overrides the default `miniters` for the setup
progress bar, unless explicitly provided by the user.
TqdmConfig.__init__(self, *, suppress_file: bool = True, suppress_display: bool = True, mininterval: float | None = None, maxinterval: float | None = None, miniters: float | int | None = None) -> NoneInitialize self. See help(type(self)) for accurate signature.
TqdmConfig.maxintervalNone
TqdmConfig.minintervalNone
TqdmConfig.minitersNone
TqdmConfig.suppress_displayTrue
TqdmConfig.suppress_fileTrue