Open jedie opened 8 years ago
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 :smile_cat: :smile_cat:
https://github.com/tqdm/tqdm is a nice progress bar.
Is it possible to use it?