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
I can suggest something to solve this issue we can use Progressbar library for this purpose.
Here is a simple example for that
import time
import progressbar
bar = progressbar.ProgressBar(widgets=[
' [', progressbar.Timer(), '] ',
progressbar.Bar(),
' (', progressbar.ETA(), ') ',
])
for i in bar(range(20)):
time.sleep(0.1)
We can estimate how much objects are remaining and then show a progress bar like Git
😸 😸
https://github.com/tqdm/tqdm is a nice progress bar.
Is it possible to use it?
The text was updated successfully, but these errors were encountered: