An open API service indexing awesome lists of open source software.

https://github.com/deven96/spin-loader

simplistic loader with wait messages
https://github.com/deven96/spin-loader

processing python3 spinner

Last synced: about 2 months ago
JSON representation

simplistic loader with wait messages

Awesome Lists containing this project

README

        

# Spin Loader

Simplistic Loader to display when running background processes

## Usage

```python
import time
from spinner import spin

spin_handler = spin(before="Please be patient while i do x")
# simulate a computation taking 5 seconds
time.sleep(5)
spin_handler.terminate()
```