Skip to main content

Simple Python progress bar for parallel programs.

Project description

https://badge.fury.io/py/PProgress.svg

Features

Provides an all purpose Python based progress bar utility that can be run in loops either running in serial or parallel with MPI or other utilities.

  • When using parallel loops, each parallel progress gets a progress bar.

  • The progress bar shows the percent completion of the tasks assigned to that process.

  • If there are multiple processes, all progress bars remain until the final onefinishes.

Installation

PProgess can simply be install using pip as:

pip install pprogress

Then you can try out a simple serial example as:

from pprogress import ProgressBar
from time import sleep

N = 100
pb = ProgressBar(N)
for i in range(N):
    pb.update()
    sleep(0.1)
pb.done()

Documentation

Full documentation with parallel examples coming soon!

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

PProgress-0.0.5.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

PProgress-0.0.5-py3-none-any.whl (15.6 kB view hashes)

Uploaded 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