MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / progress_bar_range

Function progress_bar_range

DemoPrograms/Demo_Progress_Meters.py:191–202  ·  view source on GitHub ↗

Acts like the range() function but with a progress meter built-into it :param key: progess meter's key :param start: low end of the range :param stop: Uppder end of range :param step: :param args: :param kwargs: :return:

(key, start, stop=None, step=1, *args, **kwargs)

Source from the content-addressed store, hash-verified

189
190
191def progress_bar_range(key, start, stop=None, step=1, *args, **kwargs):
192 """
193 Acts like the range() function but with a progress meter built-into it
194 :param key: progess meter's key
195 :param start: low end of the range
196 :param stop: Uppder end of range
197 :param step:
198 :param args:
199 :param kwargs:
200 :return:
201 """
202 return progress_bar(key, range(start, stop, step), *args, **kwargs)
203
204
205# -------------------- Demo Usage --------------------

Callers

nothing calls this directly

Calls 1

progress_barFunction · 0.85

Tested by

no test coverage detected