Skip to content

Joklost/ezprogress

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ezprogress

Simple, easy to use progress bar for Python 3.6+.

Installation

$ pip3 install ezprogress

Usage

>>> from ezprogress.progressbar import ProgressBar
>>> pb = ProgressBar(total=100, title='Progress')
>>> pb.start()
>>> for i in range(0, 100):
>>>     pb.update(i)
>>>     do_stuff(i)
>>> pb.finished()