Python Progress Indicator Utility
Project description
PyPrind
=============
The PyPrind (Python Progress Indicator) module provides a progress bar and a
percentage indicator object that let you track the progress of a loop
structure or other iterative computation.
Typical applications include the processing of large data sets to provide
an intuitive estimate at runtime about the progress of the computation.
Example - Progress Bar
--------------------------
import pyprind
n = 10000000
my_prbar = pyprind.ProgBar(n)
for i in range(n):
# do some computation
my_prbar.update()
my_prbar.finish()
**Screen Output**
sebastian > python3 examples/ex_progress_bar.py
0% 100%
[########################################]
Time elapsed: 0.7829 sec
=============
The PyPrind (Python Progress Indicator) module provides a progress bar and a
percentage indicator object that let you track the progress of a loop
structure or other iterative computation.
Typical applications include the processing of large data sets to provide
an intuitive estimate at runtime about the progress of the computation.
Example - Progress Bar
--------------------------
import pyprind
n = 10000000
my_prbar = pyprind.ProgBar(n)
for i in range(n):
# do some computation
my_prbar.update()
my_prbar.finish()
**Screen Output**
sebastian > python3 examples/ex_progress_bar.py
0% 100%
[########################################]
Time elapsed: 0.7829 sec
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
PyPrind-1.0.4.tar.gz
(16.6 kB
view details)
File details
Details for the file PyPrind-1.0.4.tar.gz.
File metadata
- Download URL: PyPrind-1.0.4.tar.gz
- Upload date:
- Size: 16.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83b611181d650b0bef54435e1b1eccc18c3ac420c1af7ff8ea0e5397a6fd3090
|
|
| MD5 |
795575f228d6add2f3d55f4c85a70cd7
|
|
| BLAKE2b-256 |
0b9839c51603e8cd52910fec923654c55831fa3b3c81a54cfe371d9b73bee2e4
|