ProgressBar¶
- class lsst.daf.butler.progress.ProgressBar(*args, **kwargs)¶
-
A structural interface for progress bars that wrap iterables.
An object conforming to this interface can be obtained from the
Progress.bar
method.Notes
This interface is intentionally defined as the intersection of the progress bar objects returned by the
click
andtqdm
packages, allowing those to directly satisfy code that uses this interface.Methods Summary
update
([n])Increment the progress bar by the given amount.
Methods Documentation