Skip to main content

Simple progress bar for Python 3

Project description

tiny_progress_bar

Progress Bar for Python 3. Does not use any external libraries and the code is very very tiny.

Example gif

Installation

Simply use pip!

pip install tiny-progress-bar

https://pypi.org/project/tiny-progress-bar/

How to use

Import the progress_bar function into your script.

Then wrap any iterable with it. Then you'll see it running.

Example:

from tiny_progress_bar import progress_bar as pb
from time import sleep

array = range(10)
counter = 0

for i in pb(array):
    sleep(0.1)  # Your long running process
    counter += i

print(sum(array) == counter)

Bar Length

You can also specify the length of the progress bar by changing the bar_length parameter.

Note the minimum bar_length is 10.

Smaller Bar Example

# Smaller bar
length = 10
array = range(100)
for _ in pb(array, bar_length=length):
    sleep(0.1)  # Your long running process

Larger Bar Example

# Larger bar
length = 100
array = range(100)
for _ in pb(array, bar_length=length):
    sleep(0.1)  # Your long running process

Testing

A test file is included in this package.

Feel free to run pytest or pytest test_tiny_progress_bar.py

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

tiny_progress_bar-0.1.6.tar.gz (16.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tiny_progress_bar-0.1.6-py3-none-any.whl (15.5 kB view details)

Uploaded Python 3

File details

Details for the file tiny_progress_bar-0.1.6.tar.gz.

File metadata

  • Download URL: tiny_progress_bar-0.1.6.tar.gz
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.19

File hashes

Hashes for tiny_progress_bar-0.1.6.tar.gz
Algorithm Hash digest
SHA256 6795b013b83dc057ed56af7d593bc647c1b4254388f6eda3dfc3b49da99c8936
MD5 19c2b89fea776142481c6dc1d9d80286
BLAKE2b-256 29b131b80a2570a3fa48e46495452acef1a48af62099ee0c8752ea178a2876b3

See more details on using hashes here.

File details

Details for the file tiny_progress_bar-0.1.6-py3-none-any.whl.

File metadata

File hashes

Hashes for tiny_progress_bar-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 5a548af9d51a6e725f60a9e61bb12c9d514ae50b46e53c0d70e0b54603f7f28d
MD5 66bfff5cedcfa458da6c2e0843a5b678
BLAKE2b-256 5a62fb45e3fdeb4957b0adbe726f345f603cb08775a9a6100a131e28fc445816

See more details on using hashes here.

Supported by

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