alive-progress icon indicating copy to clipboard operation
alive-progress copied to clipboard

A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!

Results 39 alive-progress issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/34352127/188235868-268b538b-40bb-4474-b93c-515a75892e2f.png) When Trying to use alive bar I am running into a very frustrating issue where it is displaying the counter every line ( appears to be part of progress.py...

Hi @rsalmei , thank you for this awesome library! Referring to https://github.com/rsalmei/alive-progress/issues/135, are new line characters `\n` allowed in `bar.text`? Mine do not seem to be taking and keeps everything...

feature request

Hi there! Love the package and the customisations so far! I have a process that takes around 2 seconds per iteration. and would like to see something like `2.01s/it`. The...

feature request

Hello, When I use multithreading, the runtime prints duplicate results. ``` import threading, queue from alive_progress import alive_bar import time q = queue.Queue() for url in range(1000): q.put(url) def requester(url):...

bug

Hello, first of all a big thanks for a great package. I love ❤️ it. I have noticed that `alive-progress` is very-very slow to react to rate changes in long...

feature request

Im wondering, can i get some logging, if alive_bar working inside of celery worker? With this code: ``` import time from alive_progress import alive_bar for x in 1000, 1500, 700,...

improvement

I have to check the progress each periode of time then update the bar with pregression difference, but this value could be 0, so it updated 1 while it doesn't...

improvement

```py from pathlib import Path from time import sleep from alive_progress import alive_it, config_handler config_handler.set_global(length=50, theme="classic", dual_line=True) files = list(Path.cwd().glob("*")) bar = alive_it(files, title="TEST") print("this text will get deleted") for...

only on windows

Hi! I'd like to use this library but unfortunately it does not work on my machine. Can you please point out missing requirements or fix this bug? ![изображение](https://user-images.githubusercontent.com/15788974/211075276-36f02dc6-95d3-4e2e-b406-d83f06ca47bc.png)

only on windows

Hi ! First of all, thanks for the library, it is awesome and i use it everywhere. I even found myself using it in some company where we have large...