Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 486 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 486 Bytes

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