Lines Matching full:progress
3 # progressbar - Text progress bar library for Python.
60 >>> progress = ProgressBar()
61 >>> for i in progress(some_iterable):
65 Since the progress bar is incredibly customizable you can specify
72 parameter is set to an integer then the progress bar will use that,
77 the current progress bar. As a result, you have access to the
82 - currval: current progress (0 <= currval <= maxval)
88 - percentage(): progress in percent [0..100]
103 """Initializes a progress bar with sane defaults."""
105 # Don't share a reference with any other progress bars
190 """Returns the progress as a percentage."""