You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Configure `ProgressBar` with a non-default ticker, do not use color, and use regular expressions to determine the `total`, `count` and `alias` attributes:
110
+
Configure `ProgressBar` with a custom ticker, show duration, do not use color, and use regular expressions to determine the `total`, `count` and `alias` attributes:
111
111
112
112
<details><summary>Code</summary>
113
113
@@ -121,7 +121,7 @@ regex = {
121
121
'count': r'^processed .*$',
122
122
'alias': r'^processor is (?P<value>.*)$'
123
123
}
124
-
with ProgressBar(ticker=10148, regex=regex, use_color=False) as pb:
124
+
with ProgressBar(ticker=9616, regex=regex, use_color=False, show_duration=True) as pb:
0 commit comments