progressbar33
Text progress bar library for Python.
What it is and what it does
progressbar33 is a text progress bar library that renders visual feedback in the terminal during long-running operations. It uses a widget-based architecture where the progress bar's display is composed of pluggable widgets—strings for static text, ProgressBarWidget objects for dynamic updates, and ProgressBarWidgetHFill objects that expand to fill remaining terminal width. The library automatically handles terminal resizing when the system supports it.
However, the package is abandoned: its last commit was 2019-02-17 and it has not been released since 2014-08-29. It targets Python 2.4–3.3, making its compatibility with modern Python versions uncertain. The license treatment is unclear (both BSD and LGPL are declared but no SPDX identifier is provided), and install friction is high due to platform-specific binary distributions.
Use it for:
- Display progress during batch file processing or data import operations in legacy Python 2 codebases.
- Show download or upload completion percentage in console applications where graphical UI is unavailable.
- Provide visual feedback during long-running data transformations or computations in terminal scripts.
- Monitor multi-step installation or deployment workflows with incremental progress updates.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Displays text-based progress bars in the console, with customizable widgets that show progress state and auto-resize to terminal width.
No. The package is abandoned (last commit 2019-02-17, no releases since 2014-08-29) with no maintenance or security updates. Compatibility beyond Python 3.3 is unverified and likely broken. License treatment is unclear. High install friction and zero runtime dependencies offer no advantage over maintained alternatives. Use only if locked into legacy Python 2 code with no migration path.
Install
progressbar33 on PyPI
pip
pip install progressbar33uv
uv add progressbar33poetry
poetry add progressbar33Installing progressbar33
Before you install
High install friction due to platform-specific binary distributions (.exe, .tar.gz). Package is abandoned—last commit was 2019-02-17 and no releases since 2014-08-29—so expect no maintenance, security updates, or Python version support beyond what was frozen then.
License in practice
License treatment is unclear: the package declares both BSD and LGPL in its classifiers but provides no SPDX identifier. Verify the actual LICENSE.txt file to confirm which applies before using in proprietary or copyleft contexts.
Quickstart
pip install progressbar33
from progressbar import ProgressBar
pbar = ProgressBar().start()
for i in range(10):
pbar.update(i)
pbar.finish()
Package targets Python 2.4–3.3; compatibility with modern Python versions is unverified.
Verify before relying
- Whether progressbar33 actually works on Python versions beyond 3.3—classifiers claim 3.3 support but package has not been maintained since 2014.
- Actual license (BSD vs. LGPL or both) by inspecting LICENSE.txt, since SPDX is null and treatment is marked unclear.
- Whether the high install friction (binary distributions) reflects genuine platform-specific compilation or outdated packaging.
Package facts
| License | LICENSE.txt (unclear) |
| Python support | not specified |
| Install friction | high — source build required |
| Runtime dependencies | none |
| Maintenance | abandoned — 4,368 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 311,330/month — #7,736 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: progressbar33-2.4.macosx-10.9-x86_64.exe; progressbar33-2.4.tar.gz
Tags
More Libraries packages
urllib3 is an HTTP client library that provides…
permissive · top 100 on PyPI
requestsRequests is a Python HTTP library that…
permissive · top 100 on PyPI
pluggyPluggy provides a plugin system that lets you…
permissive · top 100 on PyPI
python-dateutilProvides parsing, arithmetic, and recurrence…
permissive · top 100 on PyPI
sixSix provides utility functions to write Python…
permissive · top 100 on PyPI
pytestpytest is a testing framework that lets you…
permissive · top 100 on PyPI
progressbar2progressbar2 renders text-based progress bars…
permissive · top 5,000 on PyPI
progressProvides terminal progress bars and spinners…
permissive · top 5,000 on PyPI
matplotlib-scalebarAdds a matplotlib artist that renders a…
permissive · top 15,000 on PyPI
fastprogressDisplays nested progress bars with optional…
permissive · top 5,000 on PyPI
wgetDownloads files from HTTP URLs with progress…
permissive · top 5,000 on PyPI
alive-progressDisplays an animated progress bar in the…
permissive · top 5,000 on PyPI
enlightenEnlighten is a console progress bar library…
copyleft · top 5,000 on PyPI
click-spinnerDisplays a simple animated spinner in the…
permissive · top 5,000 on PyPI
proglogProglog provides a unified progress logging…
permissive · top 5,000 on PyPI
tqdm-loggableConverts tqdm progress bars to logging-friendly…
permissive · top 5,000 on PyPI