Skip to content

Instantly share code, notes, and snippets.

View Jiler01's full-sized avatar
💭
∃!

Jiler JL Jiler01

💭
∃!
  • France
  • 05:09 (UTC +02:00)
View GitHub Profile
@Jiler01
Jiler01 / Loading_animation.py
Last active January 17, 2025 16:48 — 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