progress icon indicating copy to clipboard operation
progress copied to clipboard

Easy to use progress bars for Python

Results 34 progress issues
Sort by recently updated
recently updated
newest added

…occur when concurrent programs close & reopen `stderr` self = def is_tty(self): > return self.file.isatty() if self.check_tty else True E ValueError: I/O operation on closed file We have a set...

I am interested in having multiple progress bars work. Can someone give me a pointer on how to start on this? This is important when reporting the state of a...

Hi, the following code triggers a wrapping bug in connection with the terminal size: ``` import time, progress.bar bar = progress.bar.Bar( suffix = '%(index)d of %(max)d (%(percent)d%%) ' 'eta: %(eta_td)s...

Thank you for your code firstly. I just changed the finish function to print last status of bar into stdout at the end of the progress instead of stderr, which...

Closes Issue #58 This is the first draft of a working fix for a windows console support of a progress bar.

I know from Windows 95 not to put too much faith in ETAs, but this is consistently and obviously wrong! `progress` 1.4 will show an ETA of at most a...

For tasks that run hours not seconds, a total average eta generally becomes more stable and accurate as the task progresses. A small running average does the unstable "windows file...

The only impediment to reusing the same progress object multiple times is that `index` is not reset when `iter` is called -- doing that would make it very convenient to...

Hi @verigak, How do you integrate this library with [urllib.request.urlretrieve](https://docs.python.org/3.0/library/urllib.request.html#urllib.request.urlretrieve)?