Rendering vertical progress bars with custom colors and styles
Project description
ProgressVertical is a Python library for displaying vertical progress bars for command-line interface (CLI) applications.
Designed with a focus on usability and customization, allowing the creation of multi-stage progress animations with configurable colors, styles, and durations, inspired by another library progressbar.
The differential of ProgressVertical
| ProgressVertical | ProgressBar2 |
|---|---|
| Multiple parallel stages with compact visualization. | Single or sequential linear progress. |
| Independent logic for each bar. | Single progress with sub-bar support |
| Monitors multiple tasks in parallel | Traditional linear progress with built-in metrics |
Processes are batch-based, allowing monitoring of tasks in parallel without depending on others, reducing overhead.
Installation:
pip install progressvertical
Usage Example
from progressvertical import ProgressManager, VerticalProgressRenderer, ColorManager
ColorManager.init_colorama() # Initializes Colorama
renderer = VerticalProgressRenderer(height=10, spacing=6)
manager = ProgressManager(renderer)
manager.add_stage("Processing", 2.0, fore_color="green", style="bright")
manager.add_stage("Validation", 3.0, fore_color="yellow", back_color="blue")
manager.add_stage("Finalization", 1.5, fore_color="red", style="dim")
manager.start_animation(update_interval=0.1)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file progressvertical-0.1.6.tar.gz.
File metadata
- Download URL: progressvertical-0.1.6.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
962845fe0485d9491883acdfde2fee9efacd93c0c9bbbfb5f61ac05ed4a3a0f3
|
|
| MD5 |
2e7e1cfb5e59430beb06b9e56bab4ad7
|
|
| BLAKE2b-256 |
822165e7768be5595994a8dd9494440bbf07f70aa9e483578eb2abe71758674d
|
File details
Details for the file progressvertical-0.1.6-py3-none-any.whl.
File metadata
- Download URL: progressvertical-0.1.6-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0b397806a7d3a554ad942755b8c9fcb6a3cac81b71b32496fc9b8606a2e5b5b
|
|
| MD5 |
9b688ae8bfe322524df7c8799758b711
|
|
| BLAKE2b-256 |
8e972d0acbb17be870c15c15b3dab00277817f6e715d688638b2af0d93d677a6
|