Skip to content

Releases: click-contrib/click-spinner

Same as 0.1.9

24 Apr 07:17
Compare
Choose a tag to compare
Same as 0.1.9 Pre-release
Pre-release

Same as v0.1.9 (two identical versions due to pypi issues)

Support for configurable streams

24 Apr 07:06
81e359c
Compare
Choose a tag to compare

Same as v0.1.10 (two identical versions due to pypi issues)

v0.1.7: Clean out spinner character when done

06 Feb 16:26
Compare
Choose a tag to compare

v0.1.6: Beep when done

15 Dec 09:30
Compare
Choose a tag to compare

This release adds a flag to the spinner to make it beep when it closes to alert users that a long task is done:

with spinner(beep=True):
    very_long_task()

v0.1.3: Python 2.7 support

05 Oct 08:04
Compare
Choose a tag to compare
add supported python versions

v0.1.1: first release

04 Sep 11:03
Compare
Choose a tag to compare

First release to PyPI.

Install with pip install click-spinner

Usage:

from click_spinner import spinner

with spinner():
    do_something()
    do_something_else()