Metadata-Version: 2.1
Name: simple-spinner
Version: 0.1.0
Summary: Simple Spinner in python
Home-page: https://github.com/wooy0ng/simple_spinner
Author: wooy0ng
Author-email: yygg9800@naver.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

<div align="center">
 <h1> Simple Spinner </h1>
 <br>
 It is a way to print a spinning cursor in terminal using Python.  <br />
 I referred <a href="https://stackoverflow.com/questions/4995733/how-to-create-a-spinning-command-line-cursor">this document</a>.<br/><br/>

 "It's just Simple Spinning Cursor."
 
<br>
</div>

### **download**
```bash
pip install simple_spinner
```


### **how to use?**

use `start, end` method
```python
from simple_spinner.spinner import Spinner

spinner = Spinner()
spinner.start(desc='test')
time.sleep(3)
spinner.stop()
```

<br><br>

use `with` reserved word
```python
from simple_spinner.spinner import Spinner

with Spinner(desc='test'):
    time.sleep(3)
```



