Skip to content

Instantly share code, notes, and snippets.

@ivanignatiev
ivanignatiev / Loading_animation.py
Last active January 31, 2025 21:14 — forked from akupar/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