Simple progress bar for Python 3
Project description
tiny_progress_bar
Progress Bar for Python 3. Does not use any external libraries and the code is very very tiny.
Installation
Simply use pip!
pip install tiny-progress-bar
https://pypi.org/project/tiny-progress-bar/
How to use
Import the progress_bar function into your script.
Then wrap any iterable with it. Then you'll see it running.
Example:
from tiny_progress_bar import progress_bar as pb
from time import sleep
array = range(10)
counter = 0
for i in pb(array):
sleep(0.1) # Your long running process
counter += i
print(sum(array) == counter)
Bar Length
You can also specify the length of the progress bar by changing the bar_length parameter.
Note the minimum bar_length is 10.
Smaller Bar Example
# Smaller bar
length = 10
array = range(100)
for _ in pb(array, bar_length=length):
sleep(0.1) # Your long running process
Larger Bar Example
# Larger bar
length = 100
array = range(100)
for _ in pb(array, bar_length=length):
sleep(0.1) # Your long running process
Testing
A test file is included in this package.
Feel free to run pytest or pytest test_tiny_progress_bar.py
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tiny_progress_bar-0.1.6.tar.gz.
File metadata
- Download URL: tiny_progress_bar-0.1.6.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6795b013b83dc057ed56af7d593bc647c1b4254388f6eda3dfc3b49da99c8936
|
|
| MD5 |
19c2b89fea776142481c6dc1d9d80286
|
|
| BLAKE2b-256 |
29b131b80a2570a3fa48e46495452acef1a48af62099ee0c8752ea178a2876b3
|
File details
Details for the file tiny_progress_bar-0.1.6-py3-none-any.whl.
File metadata
- Download URL: tiny_progress_bar-0.1.6-py3-none-any.whl
- Upload date:
- Size: 15.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a548af9d51a6e725f60a9e61bb12c9d514ae50b46e53c0d70e0b54603f7f28d
|
|
| MD5 |
66bfff5cedcfa458da6c2e0843a5b678
|
|
| BLAKE2b-256 |
5a62fb45e3fdeb4957b0adbe726f345f603cb08775a9a6100a131e28fc445816
|