Skip to main content

A visually appealing progress bar for long lasting computations.

Project description

# progress_bar
A visually appealing progress bar for long lasting computations.
It also computes the remaining estimated time for the task by ad-hoc learning
of the completion so far. For this reason `scikit-learn` and `numpy` are
required.

You can install *progress_bar* via
```bash
pip install --user git+https://github.com/JosuaKrause/progress_bar.git
```

and import it in python using:
```python
import progress_bar
```

Compute a task as follows:
```python
from __future__ import print_function
import time

res = [ 0 ]

def task(elem):
time.sleep(0.01)
res[0] += elem

progress_bar.progress_list(range(1000), task, prefix="sleep list")
print(res[0])
```
or in a range:
```python
def task_range(cur_ix, length):
task(cur_ix)

progress_bar.progress(0, 1000, task_range, prefix="sleep range")
print(res[0])
```

The output looks roughly like this:
```
sleep list: |████████████▌ | 62.30% (T 7.492s ETA 6.791s)
```

If no estimate of the progress towards completion can be made use:
```python
def repeat(num):
while True:
yield num

progress_bar.progress_indef(repeat(1), task, prefix="sleep indefinitely")
```

which produces output like this:
```
sleep indefinitely: /
```


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

progressor-0.1.0-py2.py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page