Python tqdm Module | How to create a terminal progress bar17 Mar 2025 | 6 min read Whenever we install any Python library, module, or installing software, we see the progress bar to screen, which denotes the small progress bar that estimates how long the process would take to complete or render. It gives us an impression of activity and can calm the nerves. We all are familiar with the various progress bar. Some of them are attractive and some of them boring. In this article, we will create the progress bar without involving Python's code core logging library. Progress bars are filled up according to the percentage of progress made in accomplishing a task. The progress can be calculated by dividing number_of_item_processed by total_input_item. Various factors affect the progress bar, such as network speed, latency, and if persisting data into local storage to derive a more accurate ETA (Estimated Time of Arrival). We can create simple and hassle-free progress bars using the Python external library named tqdm. We can add it to the code and make it look lovely. The tqdm stands for taqadum in Arabic, which means progress. Python tqdm module works on various platform such Linux, Window, Mac, etc. and it is also compatible with the IPython/Jupyter notebooks. Need for Progress BarIf we are working with the smaller data set, the progress will not bother in our workflow. However, the progress bar can be used for iterating over a dataset, training a model, or encoding a large information set.
PrerequisitesPython 3 must be installed in the system and we can also create a virtual environment to install the tqdm library. InstallationOpen the command-line terminal and type the following. Or The above command will successfully install in the system. We can verify it using the following statement. If there is no error which means this library is successfully installed. Adding Progress Bars to for LoopsProgram Output: outer loop: 0%| | 0/10 [00:00<?, ?it/s] inner loop: 0%| | 0.00/100 [00:00<?, ?it/s] inner loop: 1%| | 1.00/100 [00:01<01:40, 1.02s/it] inner loop: 2%|▏ | 2.00/100 [00:02<01:39, 1.02s/it] inner loop: 3%|▎ | 3.00/100 [00:03<01:38, 1.01s/it] inner loop: 4%|▍ | 4.00/100 [00:04<01:37, 1.01s/it] inner loop: 5%|▌ | 5.00/100 [00:05<01:35, 1.01s/it] inner loop: 6%|▌ | 6.00/100 [00:06<01:34, 1.01s/it] inner loop: 7%|▋ | 7.00/100 [00:07<01:34, 1.01s/it] inner loop: 8%|▊ | 8.00/100 [00:08<01:33, 1.02s/it] inner loop: 9%|▉ | 9.00/100 [00:09<01:32, 1.02s/it] inner loop: 10%|█ | 10.0/100 [00:10<01:31, 1.02s/it] inner loop: 11%|█ | 11.0/100 [00:11<01:30, 1.01s/it] inner loop: 12%|█▏ | 12.0/100 [00:12<01:29, 1.01s/it] inner loop: 13%|█▎ | 13.0/100 [00:13<01:28, 1.01s/it] inner loop: 14%|█▍ | 14.0/100 [00:14<01:29, 1.04s/it] inner loop: 15%|█▌ | 15.0/100 [00:15<01:27, 1.03s/it] inner loop: 16%|█▌ | 16.0/100 [00:16<01:26, 1.02s/it] inner loop: 17%|█▋ | 17.0/100 [00:17<01:24, 1.02s/it] inner loop: 18%|█▊ | 18.0/100 [00:18<01:23, 1.02s/it] inner loop: 19%|█▉ | 19.0/100 [00:19<01:22, 1.02s/it] ……………………………………………………………………………………………. …………………………………………………………………………………………….. It will go till it reached at 100%. Let's understand another example. Example - 1 Output:
Example - Output: outer loop: 0%| | 0/10 [00:00<?, ?it/s] inner loop: 0%| | 0.00/100 [00:00<?, ?it/s] inner loop: 1%| | 1.00/100 [00:01<01:39, 1.00s/it] inner loop: 2%|▏ | 2.00/100 [00:02<01:38, 1.00s/it] inner loop: 3%|▎ | 3.00/100 [00:03<01:37, 1.00s/it] inner loop: 4%|▍ | 4.00/100 [00:04<01:36, 1.00s/it] inner loop: 5%|▌ | 5.00/100 [00:05<01:35, 1.00s/it] inner loop: 6%|▌ | 6.00/100 [00:06<01:34, 1.01s/it] inner loop: 7%|▋ | 7.00/100 [00:07<01:33, 1.01s/it] inner loop: 8%|▊ | 8.00/100 [00:08<01:32, 1.01s/it] inner loop: 9%|▉ | 9.00/100 [00:09<01:31, 1.00s/it] inner loop: 10%|█ | 10.0/100 [00:10<01:30, 1.01s/it] Example -3 Output: Outer loop: 0%| | 0/3 [00:00<?, ?it/s] Inner loop: 0%| | 0/5 [00:00<?, ?it/s] Inner loop: 20%|██ | 1/5 [00:00<00:00, 4.62it/s] Inner loop: 40%|████ | 2/5 [00:00<00:00, 4.64it/s] Inner loop: 60%|██████ | 3/5 [00:00<00:00, 4.63it/s] Inner loop: 80%|████████ | 4/5 [00:00<00:00, 4.65it/s] Outer loop: 33%|███▎ | 1/3 [00:01<00:03, 1.58s/it] Inner loop: 0%| | 0/5 [00:00<?, ?it/s] Inner loop: 20%|██ | 1/5 [00:00<00:00, 4.91it/s] Inner loop: 40%|████ | 2/5 [00:00<00:00, 4.85it/s] Inner loop: 60%|██████ | 3/5 [00:00<00:00, 4.79it/s] Inner loop: 80%|████████ | 4/5 [00:00<00:00, 4.77it/s] Outer loop: 67%|██████▋ | 2/3 [00:03<00:01, 1.58s/it] Inner loop: 0%| | 0/5 [00:00<?, ?it/s] Inner loop: 20%|██ | 1/5 [00:00<00:00, 4.43it/s] Inner loop: 40%|████ | 2/5 [00:00<00:00, 4.56it/s] Inner loop: 60%|██████ | 3/5 [00:00<00:00, 4.65it/s] Inner loop: 80%|████████ | 4/5 [00:00<00:00, 4.72it/s] Outer loop: 100%|██████████| 3/3 [00:04<00:00, 1.57s/it] Predictive Manual Updates of Progress BarThe tqdm module provides a facility to update the progress bar at certain intervals manually. When we download a multi-part file in chunks or streaming data, we can manually update the process bar function. Let's understand the following example. Example - Output: 100%|██████████| 100/100 [00:10<00:00, 9.93it/s] Explanation - In the above code, we have set attribute as 100. The called function incremented by ten in each iteration until 100% is achieved. We can pass any value to the update() method. Threaded Progress BarWe can also trap the Python tqdm package into Python threads. Multiprocessing is the best way to use the total number of cores. The tqdm position argument allows us to specify the line offset to print this bar. It is set on automatic by default in case of unscripted. Let's understand the following example. The value must be specified to manage the multiple bars at once. If we ignore this argument, our bar will be overridden by different threads. Example - Output: progressbar #5: 0%| | 0/100 [00:00<?, ?it/s] progressbar #2: 0%| | 0/100 [00:00<?, ?it/s] progressbar #1: 0%| | 0/100 [00:00<?, ?it/s] progressbar #4: 0%| | 0/100 [00:00<?, ?it/s] progressbar #3: 0%| | 0/100 [00:00<?, ?it/s] progressbar #3: 10%|█ | 10/100 [00:01<00:09, 9.91it/s] progressbar #5: 10%|█ | 10/100 [00:01<00:09, 9.91it/s] progressbar #1: 10%|█ | 10/100 [00:02<00:18, 4.97it/s] progressbar #2: 10%|█ | 10/100 [00:02<00:18, 4.96it/s] progressbar #4: 10%|█ | 10/100 [00:02<00:18, 4.96it/s] progressbar #5: 15%|█▌ | 15/100 [00:02<00:11, 7.64it/s] progressbar #3: 15%|█▌ | 15/100 [00:02<00:11, 7.64it/s] progressbar #4: 15%|█▌ | 15/100 [00:03<00:17, 4.96it/s] progressbar #2: 15%|█▌ | 15/100 [00:03<00:17, 4.95it/s] progressbar #3: 20%|██ | 20/100 [00:04<00:16, 4.71it/s] progressbar #5: 25%|██▌ | 25/100 [00:04<00:11, 6.58it/s] progressbar #1: 20%|██ | 20/100 [00:04<00:16, 4.97it/s] progressbar #2: 20%|██ | 20/100 [00:04<00:16, 4.96it/s] Add Color in Tqdm Progress BarColor can make the progress bar very attractive. However, it doesn't add any new functionality to the working of the bar. The tqdm can work with Colorama, a simple cross-platform color terminal text in Python. Let's understand the following example. Example - Output: ![]() ConclusionWe have discussed all basic concepts related to the progress bar. Python comes with the tqdm module that helps us to design manually. We have defined suitable examples for important operation that we can perform in tqdm module. The tqdm module can collaborate with the subprocess and threads where we can run the multiple process bars at the same time. Next TopicCaesar Cipher in Python |
Multiple machine learning algorithms are used in ensemble learning, aiming to improve the correct prediction ratio on a dataset. A dataset is used to train a list of machine learning models, and the distinct predictions made by each of the models applied to the dataset form...
6 min read
? ASCII (American Standard Code for Information Interchange) is a character encoding standard used in computers to represent text. It assigns a unique number to each character, and these numbers can be represented in hexadecimal format. Converting a hexadecimal string to ASCII in Python involves a few steps,...
2 min read
In the following tutorial, we will discuss some of the best Python modules or tools that are used for automation and testing. There can be various issues while producing software, and Automation and Testing are one of the best ways to resolve these problems without spending...
5 min read
In this tutorial, we will learn about the finger search tree data structure and discuss its advantages and disadvantages. We will also understand its implementation in Python. A finger search tree is a specialized data structure designed for efficient searching and accessing of data in a set...
8 min read
In this tutorial, we will write the Python program to convert the Roman numbers into the integer. It is a popular problem was asked by the tech giant Amazon, Facebook in the interview. Let's see the problem statement and implementation of the solution. Problem Statement A roman number...
4 min read
What is HTTP? HTTP stands for HyperText Transfer Protocol which has some set of rules which determines the communication or data transfer into client-server architecture. The client is generally a browser, and the Server is the source where information is available already, and the Client requests the...
3 min read
In this tutorial, we will learn how to verify a list consists of duplicate elements or not. It is a basic list program that can be asked in the coding interview. We will solve this problem using various methods. Let's see the problem statement. Problem Statement An integer...
4 min read
Speech Recognition in Python Have you ever thought about how Google Assistant or Amazon Alexa recognizes whatever you say? You must be thinking about some complex smart technologies working behind bars. Apart from a massive hit in the market of tremendous technological growth of recognition systems, the...
17 min read
the asyncio module. The asyncio module comes with excellent features that allow us to write more efficient Python asynchronous applications. We will explore how to manage an async event loop in Python. Before dive deep into this topic, let's understand what asynchronous programming is. What is Asynchronous...
7 min read
As we know that a programming language like Python is an Interpreted language, which essentially implies that every block or line of code is processed one after one, rather than changing the whole program to a low-level code altogether. Whenever the interpreter of Python scans a line...
7 min read
We request you to subscribe our newsletter for upcoming updates.
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India