Metadata-Version: 2.4
Name: click-spinner
Version: 0.1.10
Summary: Spinner for Click
Home-page: https://github.com/click-contrib/click-spinner
Author: Yoav Ram
Author-email: yoav@yoavram.com
License: MIT
Description-Content-Type: text/markdown
Provides-Extra: test
Requires-Dist: click; extra == "test"
Requires-Dist: pytest; extra == "test"
Requires-Dist: six; extra == "test"
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: provides-extra
Dynamic: summary

# Click Spinner

[![PyPI](https://img.shields.io/pypi/v/click-spinner.svg)](https://pypi.python.org/pypi/click-spinner/) [![Build Status](https://travis-ci.org/click-contrib/click-spinner.svg?branch=master)](https://travis-ci.org/click-contrib/click-spinner)

Sometimes you would just like to show the user some progress, 
but a progress bar is not suitable because you don’t know how much longer it would take. 
In these cases you might want to display a simple spinner using the `spinner()` function.

Example usage:

```py
with click_spinner.spinner():
        do_something()
        do_something_else()
```

It looks like this:

![spinner](https://cloud.githubusercontent.com/assets/1288133/18229827/29629cd4-728f-11e6-8007-6c85ac50565c.gif)

Spinner class based on on a [gist by @cevaris](https://gist.github.com/cevaris/79700649f0543584009e).

Introduced in [PR #649](https://github.com/pallets/click/pull/649). 

## Install

```
pip install click-spinner
```

Supports Python 2.7 and 3.

## Authors

- @yoavram
- @andy-maier
- @AdrienPensart
