Casper da Costa-Luis

Results 558 comments of Casper da Costa-Luis

Think we need to decide on a user interface first. ```python from tqdm.auto import tqdm # format for `ascii`: empty_char + spinner_chars + error_char + success_char with tqdm.spinner(desc="Processing", ascii=" |/-\\!✔")...

Completely forgot about #223; looks like something intended for `tqdm.contrib` and if it gets used a lot made part of `tqdm.std`. Was thinking about something wayyy simpler though with https://github.com/tqdm/tqdm/issues/925#issuecomment-623142879

Interesting, I can't reproduce this. Works fine (progress is on one line): ```bash docker run -it tqdm/tqdm python -c 'from tqdm import trange; [0 for _ in trange(int(1e8))]' ``` Related:...

I think you may mean something like: ```python from tqdm import tqdm, trange from time import sleep def inconsistent_function(i): sleep(1 if i == 0 else 0.1) for i in trange(10,...

I agree if you use it a lot in your code base; it's probably best to sub-class and add this feature. Not sure if it's worth putting this in the...

indeed; lemme know if `tqdm>=4.55.0` still doesn't quite work for you

@KOLANICH ok this is a big PR. Can you allow commits from maintainers? For now I've pushed https://github.com/tqdm/tqdm/tree/GUI-native-progresses

what version of `tqdm` are you using?

Protected the branch now... GH kept auto-deleting the branch every merge...