Rogério Sampaio de Almeida

Results 130 comments of Rogério Sampaio de Almeida

Which version are you using? I've seen ENTERs being sent to the Python terminal once, but it was with a very old `alive-progress` version, pre-2.0 if I'm not mistaken. Anyway,...

Yes, exactly was I was going to say now, thanks @TheTechRobo. @AliceFischer96, if the simplest one does work, I think we can be sure it is not `alive-progress`. You could...

As far as I'm aware, I think It can't be anything related to `await` or coroutines. See, these functions only move from the main thread into an async engine, which...

I was just caught up by this. I don't derive _any_ traits I don't strictly need, so I can keep track of the changes that force each derive, and also...

Hey yeah, I have to try and find time to commit this... It's done for four months now, and still only on my machine. Since I work with Rust now,...

Great, thanks! Do you realize it's not that easy to implement? Imagine in my example, a red Hello and an orange World. The char at index 1 should be a...

Wow, that was fast! Thank you. I'll verify and report back to you!

Hey, it seems to be working real nice! It just broke with unicode characters, but should be easy to fix: ``` In [30]: colorful.red('♫♬') Out[30]: In [31]: print(_) ♫♬ In...

I got another of the same error with disable: ``` In [34]: colorful.disable() In [35]: print(_30) --------------------------------------------------------------------------- UnicodeDecodeError Traceback (most recent call last) in () ----> 1 print(_30) /Users/rogerio/.pyenv/versions/2.7.15/lib/python2.7/site-packages/colorful/core.pyc in...

Oh yes, my mistake! I'm sorry for that. It does work for these cases! Unfortunately it is still missing something, but I'm not sure what. I'm my progress bar, I...