python-progressbar icon indicating copy to clipboard operation
python-progressbar copied to clipboard

Progressbar 2 - A progress bar for Python 2 and Python 3 - "pip install progressbar2"

Results 26 python-progressbar issues
Sort by recently updated
recently updated
newest added

#### Description I get weird and wrong color/ANSI-detection and progressbar output containing unprocessed ANSI-escape sequences in a CMD.exe or powershell.exe console on Windows, now that I have updated to the...

Stale

#### Description I have a fit function with a for-loop inside of it: `for epoch in self.progressbar(range(50)):` When using a Jupyter notebook, when running the cell for the first time,...

Stale

In Windows CPython, format_time() can throw "OSError: [Errno 22] Invalid argument" when passed a very large date. Ignore this in ETA.__call__() with contextlib.suppress(). Fixes #297.

#### Description A progressbar containing an AbsoluteETA widget intermittently crashes with an OSError on Windows CPython. #### Code ``` File "R:\downloadImages\downloadImages.py", line 246, in update self.bar.update(self.alreadyCopied) File "R:\python-progressbar\progressbar\bar.py", line 909,...

#### Description The latest version on pypi has a dangling colon in [widgets.py](https://github.com/wolph/python-progressbar/blame/develop/progressbar/widgets.py#L563C1-L563C2) #### Code ```python File "/home/runner/work/MKIDPipeline/MKIDPipeline/mkidpipeline/steps/wavecal.py", line 9, in import progressbar as pb File "/home/runner/work/MKIDPipeline/MKIDPipeline/.venv/lib/python3.12/site-packages/progressbar/__init__.py", line 9, in...

#### Description When used *both* as context manager (e.g. `with`) *and* as iterable wrapper, exhausting the iterable and exiting the `with` scope causes the progress bar to duplicate. #### Code...