Skip to content

ValentinVignal/LoadBar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LoadBar

This is a very simple python library to create a loading bar on the shell

Install it

pip install load-bar

Use it

import time
from loadbar import LoadBar
bar = LoadBar(max=100)
bar.start()
for i in range(100):
    time.sleep(0.05)
    bar.update(step=i)
bar.end()

image

See the documentation