Metadata-Version: 2.1
Name: simple-spinner
Version: 0.1.1
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>
 <img src="https://user-images.githubusercontent.com/37149278/236219276-9553b362-3232-422e-abd6-ce169b0ff942.gif" width="700">
 <br><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
```

<br><br>

### **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)
```



