Skip to content

Instantly share code, notes, and snippets.

View Jiler01's full-sized avatar
💭
∃!

Jiler JL Jiler01

💭
∃!
View GitHub Profile
@Jiler01
Jiler01 / Loading_animation.py
Last active May 12, 2024 20:33 — forked from rudrathegreat/Loading.py
A Simple Loading Animation Decorator For the Command Line Using Python 3
"""
This program is designed to create
and animate a simple loading animation.
"""
from sys import stdout as terminal
from time import sleep
from itertools import cycle
from threading import Thread