Skip to content

noah-hoffmann/ProgressBar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ProgressBar

Python package for an easy to use progressbar.

Installation

Download the repository and and install by running

    pip install .

in the terminal.

Example

The code:

from ProgressBar import ProgressBar
from time import sleep

with ProgressBar(estimate_time=True) as progress:
    N = 10
    for i in range(N):
        sleep(.5)
        progress.update((i + 1) / N)

produces the following output:

Example gif

About

Python Package for an easy to use progressbar.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages