python-progressbar
python-progressbar copied to clipboard
Text progress bar library for Python
``` Hello, it would be really nice to have the Changelog.yaml in the released tarballs, so that us packagers (in particular for Debian) can include that file in the packages...
``` How can I update current progress bar without progress bar being printed into a new line every time? I've read about ProgressBarWidgetHFill. How can I use this widget? I...
``` What steps will reproduce the problem? 1. Install the latest version of euca2ools 3.0.0 available here: https://github.com/eucalyptus/euca2ools/tree/requestbuilder 2. Use the euca-bundle-vol tool (which uses progressbar) 3. Attempt to resize...
``` >>> p = progressbar.ProgressBar() >>> for x in p([]): pass AttributeError: next_update ``` Original issue reported on code.google.com by `[email protected]` on 20 Feb 2013 at 7:14
``` Made some changes to support running from an ipython qtconsole (requires the \r to be at the beginning of the line and the stream to be flushed). Also added...
``` I have implemented a feature allowing ProgressBar to hold a dictionary of 'attributes' that can be updated when calling ProgressBar.update. These attributes can then be accessed from within widgets...
``` Hello, if you're maxvalues is big, updates in the progress bar happen only at "discrete" interval, so when we reach 1%, 2%, and so on. I noticed this issue...
``` https://github.com/olivierverdier/python-progressbar ``` Original issue reported on code.google.com by `[email protected]` on 8 Aug 2011 at 3:30
``` Instead of: [///////////////////// ] [--------------------- ] It would be nice if it was more like: [||||||||||||||||||||/ ] [||||||||||||||||||||- ] Where it would update the "current marker" to show "sub...
``` Hi, The library uses the wrong terminal width on windows so here is some code for finding it: def get_windows_term_width(): from ctypes import windll, create_string_buffer h = windll.kernel32.GetStdHandle(-12) csbi...