Skip to content

eduardogpg/progress_bar_python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Progress Bar

Is a Python script wich can be used to show the progress about something in console.

Getting started

git clone https://github.com/eduardogpg/progress_bar_python.git

Usage

You only need import the module.

from progress_bar import print_progress_bar
from time import sleep

items = list(range(0, 100))

for i, item in enumerate(items):
    sleep(0.1)
    print_progress_bar(i, len(items), length=50, show_balance=True)
print_progress_bar(completed=True, length=50)

About

Simple progress bar with Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages