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.3.tar.gz
(17.0 kB
view details)
File details
Details for the file PyPrind-1.0.3.tar.gz.
File metadata
- Download URL: PyPrind-1.0.3.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a7fec5ce10a9d03278244ed78bead6d4f2b90d832998762854dc0bee553a39b
|
|
| MD5 |
97f3dd417380f5498e0ada4291a2847d
|
|
| BLAKE2b-256 |
f7b169518e09c7f6c028279aee7ef47cc5be2c0da3f0464d57af7e6f74d83f9e
|