-
Hi
I am trying the simple two progress bars example, but my terminal is printing each bar on a newline.
```
for i in atpbar(range(4), name='outer'):
n = random.randint(500, 1000)
…
-
Use case: As a developer/tester I need test results fast
Use case: As a user I want to see progress of testing
Use case: As a user I want control utilisation of resources used by tmt
As a first …
-
Thanks for all your hard work, I think this is the best implementation of progress bars in python that I've come across so far. I'm trying to display multiple bars at once to represent independent tor…
-
- implement a user interface to use with the "while" loop https://github.com/alphatwirl/atpbar/issues/7
-
I really like the concept of `atpbar`!
However, what I find a bit irritating is the blank space at the beginning of each line.
Is there a reason that each line starts with a space? In combination wi…
-
Thanks for making this available, it wraps up multiprocessing and threading nicely for my use case!
I'm using this to pull data from a server making requests using the requests package. It works, b…
-
`tqdm` works fine with multithreading on python3:
```python
from time import sleep
from tqdm import tqdm
from concurrent.futures import ThreadPoolExecutor
def foo(a):
tqdm.write("Working…
-
Can this be used to show progress of an apply operation on a pandas dataframe?
-
When running multiple progress bars from parallel processes, they print progress on new lines, with a random amount of new lines in between. I've thought to notice that when a single worked is updati…
-
To refer to #24: I would be interested in helping with the configurable formatting. Would it be acceptable for you that we set up a uniform code formatting / lintering in the project (e.g. black and i…