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

Python 3.3+ compatible version of python-progressbar

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

This improves behavior when using UnknownLength as maxval. Previously many widgets would raise exceptions in that case.

I would like to have a widget with simple text that can be changed. Something like: ``` class TextWidget(Widget): __slots__ = ('text') def __init__(self, text=''): self.text=text def change(self, text): self.text=text...