Metadata-Version: 2.1
Name: spinneration
Version: 0.0.1
Summary: A module for displaying progress messages and timers with spinners in the command line.
Home-page: https://github.com/Shahaf-F-S/spinneroo
Author: Shahaf Frank-Shapir
Author-email: shahaffrs@gmail.com
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: spinners
Requires-Dist: looperation
Provides-Extra: dev
Requires-Dist: pdoc3; extra == "dev"
Requires-Dist: twine; extra == "dev"

# spinneroo

> A module for displaying progress messages and timers with spinners in the command line.

## Installation
```
pip install spinneration
```

## example
```python
import time

from spinneration import Spinner

spinner1 = Spinner(
    title='Process 1',
    message='processing',
    complete="complete",
    counter=True,
    clean=True,
    silence=False
)
spinner1.spin()

time.sleep(5)

spinner2 = Spinner(
    title='Process 2',
    message='processing',
    complete="complete",
    counter=True,
    clean=True,
    silence=False
)
spinner2.spin()

time.sleep(5)

spinner2.stop()

time.sleep(5)

spinner1.stop()
```

final output
```
Process 1: Paused 00:00:05       
Process 2: complete 00:00:05     
Process 1: complete 00:00:15
```
