Skip to main content

A pretty progressbar library

Project description

https://i.imgur.com/UGgcdf1.gif

PRETTY PROGRESSBAR LIBRARY

The progress bar library that started with the idea of looking pretty

Installation

Only works with python3.

pip3 install ppl

How to use

Simple usage

import time
from ppl import pb

for i in pb(range(100)):
    time.sleep(0.1)

Show task name along with the progress bar

import time
import random
from ppl import pb

total = 120
tasks = [
    'Make paintball', 'Find dragons', 'Code in python', 'Take out the trash',
    'Fill up water bottles for trip'
]
for task in tasks:
    i = 0
    for i in pb(range(total), task=task):
        sleep_time = [.05, .04, .03, .02, .01][random.randint(0, 4)]
        time.sleep(sleep_time)  # emulating long-playing task

Custom bar length

By default the bar length is the full width of the terminal window

import time
from ppl import pb

for i in pb(range(100), bar_len=20):
    time.sleep(0.1)

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

ppl-0.1.0.tar.gz (3.4 kB view hashes)

Uploaded Source

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