koladata

Home
Overview
Fundamentals
Glossary
Cheatsheet
API Reference
Quick Recipes
Deep Dive
Common Pitfalls and Gotchas
Persistent Storage

View the Project on GitHub google/koladata

kd_ext.tqdm.TqdmConfig API

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) -> None

Initialize self.  See help(type(self)) for accurate signature.

TqdmConfig.maxinterval

None

TqdmConfig.mininterval

None

TqdmConfig.miniters

None

TqdmConfig.suppress_display

True

TqdmConfig.suppress_file

True