Skip to main content

A simple and efficient progress bar

Project description

Basic Bar

Basic Bar is a simple and effective text-based progress bar for Python applications. It's lightweight and easy to integrate, making it perfect for monitoring the progress of iterable operations with visual feedback and estimated completion times.

Installation

You can install Basic Bar directly from PyPI:

pip install basic-bar

Usage

To use Basic Bar, simply wrap any iterable in the bar() function. This function will yield from the iterable and display a progress bar in the terminal.

Example

Here's a basic example of how to use Basic Bar:

from basic_bar import bar
import time

# Example iterable
data = range(100)

# Wrapping the iterable with the bar function
for item in bar(data):
    time.sleep(0.01)  # Simulate some work

This will display a progress bar in your terminal, updating with each iteration.

Customization

You can customize the length of the progress bar by providing a length parameter:

for item in bar(data, length=50):
    time.sleep(0.01)  # Simulate some work

Features

  • Simple Integration: Just wrap your iterable with bar().
  • Customizable Bar Length: Adjust the length of the progress bar to fit your needs.
  • Real-Time Updates: Provides real-time feedback on progress with percentage completion and estimated time remaining.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

basic_bar-0.5.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

basic_bar-0.5-py3-none-any.whl (4.5 kB view details)

Uploaded Python 3

File details

Details for the file basic_bar-0.5.tar.gz.

File metadata

  • Download URL: basic_bar-0.5.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for basic_bar-0.5.tar.gz
Algorithm Hash digest
SHA256 d9b3d4dc50724b470023940f477dcd88378c1c4d919ac8c69543f7c8b565f574
MD5 3cdae68ed07a6779207c73c0175434d4
BLAKE2b-256 968058c16c28c38daa111f866a95cf7b083039459210b401901fe5e990b07e2f

See more details on using hashes here.

File details

Details for the file basic_bar-0.5-py3-none-any.whl.

File metadata

  • Download URL: basic_bar-0.5-py3-none-any.whl
  • Upload date:
  • Size: 4.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for basic_bar-0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 f9b87064ca0ece3e8e6a0919074a9152889dec61b01f175750a477b0833ebd48
MD5 3513e4477c72a5a0a31ff5378c8734dc
BLAKE2b-256 1d4837c4834d7a0d63df3e466c6e49982cc7d9ce78c1148c7697b97f54e4cc79

See more details on using hashes here.

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