usage :
from lrfutils import progress as p
for i in p.range(5):
... # iterate from 0 to 4
for i in p.range(10.4, 50.8, 10.1, endpoint=True):
... # iterate from 10.4 to 50.8 by step of 10.1
a_list = ["foo", "bar", "qux"]
for i in p.range(myList):
... # iterate over the iterable
Each iteration of these loop will automatically create and print a progress bar