Jung Winter
Jung Winter
자세한 이슈 리포팅 감사합니다! `fallback` 함수는 현재 state와 action에 맞는 규칙이 없을 때 마지막으로 호출되는 함수로 위와 같은 경우에 모든 input이 `action=*, src="자유 입력"`을 만족하므로 `cancel` 함수가 평가되지 않고있습니다. `fallback`...
`Chatter`는 내부적으로 유저 정보를 저장하고 있습니다. 이 때 1명 이상의 사용자를 가정하여 일정 요청 후 내부 유저 정보 중 10분이 지난 정보를 스스로 정리하고 있습니다. 올려주신 상황은 사용량이 매우 적을...
I checked it occurred because of wrong `get_terminal_size()`. In jupyter, width of `Output` widget is not related with terminal size. But in `HaloNotebook._get_text()`, it use `get_terminal_columns()` via `backports.shutil_get_terminal_size.get_terminal_size()`. `backports.shutil_get_terminal_size.get_terminal_size()` decide...
I think it's still happening. @manrajgrover Could you confirm ajjayymahato's request? (At least, #165 issue is also needed to check.)
@ManrajGrover I found that they use list and line counter to push string, render and clear in [listr](https://github.com/SamVerschueren/listr)→[listr-update-renderer](https://github.com/samverschueren/listr-update-renderer)→[log-update](https://github.com/sindresorhus/log-update)→[ansi-escapes](https://github.com/sindresorhus/ansi-escapes). How about wrapping `frame` in something like `output`? ## example ```python #...
How about this way? I think it can do what you want. ```python with Halo(spinner='dots') as spinner: for f in files_to_load(): spinner.text = 'Loading {}'.format(f) do_load_file(f) ```
@o355 I tested your code on my Windows machine and didn't find any problem. `Colorama` and `halo` are working well together. Isn't any screenshots you expected and actually got? If...
Sorry for late response. I checked this issue in python 2.7.13 and find [this line](https://github.com/ManrajGrover/halo/blob/4dbaa1a52356281cdf18cc1ce19016ad9276c09e/halo/halo_notebook.py#L38) is making the problem. https://github.com/ManrajGrover/halo/blob/4dbaa1a52356281cdf18cc1ce19016ad9276c09e/halo/halo_notebook.py#L38 After removing that line, final output seems to be resolved....
@likezjuisee It is dependent on your ssh client program. Check whether supporting UTF-8 and Unicode charset or not. In my case, `PuTTY` client on `Windows 10` and `ubuntu 16.04`, it...
In this case, if you type `spinner.stop()` (doesn't saw but it is kept handling) and press `Enter`, the spinner stops. But I think you want a more elegant solution. To...