Skip to content

Instantly share code, notes, and snippets.

@akupar
akupar / Loading.py
Created January 17, 2025 16:46 — forked from rudrathegreat/Loading.py
A Simple Loading Animation 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
@akupar
akupar / Loading_animation.py
Last active January 31, 2025 21:15 — forked from Jiler01/Loading_animation.py
A Simple Loading Animation Decorator and Context Manger 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
from contextlib import contextmanager