Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display a progress bar, maybe: tqdm #72

Open
jedie opened this issue Feb 2, 2016 · 1 comment
Open

Display a progress bar, maybe: tqdm #72

jedie opened this issue Feb 2, 2016 · 1 comment

Comments

@jedie
Copy link

jedie commented Feb 2, 2016

https://github.com/tqdm/tqdm is a nice progress bar.

Is it possible to use it?

@arpit1997
Copy link

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
😸 😸

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants