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
- Host: GitHub
- URL: https://github.com/deven96/spin-loader
- Owner: deven96
- Created: 2019-04-01T15:10:35.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-01T15:12:54.000Z (about 6 years ago)
- Last Synced: 2025-03-24T04:02:05.518Z (about 2 months ago)
- Topics: processing, python3, spinner
- Language: Python
- Size: 149 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spin Loader
Simplistic Loader to display when running background processes
## Usage
```python
import time
from spinner import spinspin_handler = spin(before="Please be patient while i do x")
# simulate a computation taking 5 seconds
time.sleep(5)
spin_handler.terminate()
```