logging-spinner icon indicating copy to clipboard operation
logging-spinner copied to clipboard

Display spinners (in CLI) through Python standard logging

Results 2 logging-spinner issues
Sort by recently updated
recently updated
newest added

I tried to use it on a script fetching data in database, and decided to give up the call since taking so long. However I cannot terminate the program anymore....

Implementing a spinner through a context manager would provide a even better interface. Something like this for example: with Spinner() as s: s.info('Loading please wait.') time.sleep(interval) s.info('Done') So you could...

enhancement