Skip to content

lowks/minibar

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minibar

A (WIP) python progress bar

Travis CI build status

Installing

pip install minibar

Usage

import minibar
import time

for i in minibar.bar(range(100)):
    time.sleep(0.05)

Output:

Progress bar

Minibar can be customized

bar = minibar.format('Time left: {bar} {eta}')

for i in minibar(range(50)):
    time.sleep(0.1)

The following widgets are avaliable

  • {bar} The progress bar
  • {time_ellapsed} The time ellapsed
  • {eta} The estimated time to finish
  • {counter} 0 of 100

About

Progress bar for python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%