Master Python Progress Bars: 4 Libraries & Simple GUI Integration
This tutorial demonstrates how to add lightweight progress bars to Python command‑line scripts and PySimpleGUI applications using four popular libraries, providing code snippets, visual examples, and tips for customizing bar types and animations.
If you haven't used a progress bar before, you might think it adds unnecessary complexity, but adding one only takes a few lines of code. This article shows how to add progress bars in command‑line scripts and PySimpleGUI UI.
Progress
The first library is Progress . Define the number of iterations, choose a bar type, and call bar.next() each loop.
import time
from progress.bar import IncrementalBar
mylist = [1,2,3,4,5,6,7,8]
bar = IncrementalBar('Countdown', max=len(mylist))
for item in mylist:
bar.next()
time.sleep(1)
bar.finish()The resulting bar is an incremental progress bar; various bar types are supported. Documentation: https://pypi.org/project/progress/1.5/
tqdm
The tqdm library provides a similar interface with additional options.
import time
from tqdm import tqdm
mylist = [1,2,3,4,5,6,7,8]
for i in tqdm(mylist):
time.sleep(1)The resulting bar is shown below. Documentation: https://tqdm.github.io/
Alive Progress
alive_progress adds animated effects.
from alive_progress import alive_bar
import time
mylist = [1,2,3,4,5,6,7,8]
with alive_bar(len(mylist)) as bar:
for i in mylist:
bar()
time.sleep(1)An animated bar example is displayed below.
PySimpleGUI
Use PySimpleGUI to display a graphical progress meter.
import PySimpleGUI as sg
import time
mylist = [1,2,3,4,5,6,7,8]
for i, item in enumerate(mylist):
sg.one_line_progress_meter('This is my progress meter!', i+1, len(mylist), '-key-')
time.sleep(1)A full‑window example with a progress bar and output window is also provided.
Using progress bars only requires a few lines of code and makes monitoring script execution straightforward.
Signed-in readers can open the original source through BestHub's protected redirect.
This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactand we will review it promptly.
MaGe Linux Operations
Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
