Skip to content

Instantly share code, notes, and snippets.

View nikpau's full-sized avatar
🎲
Data!

Niklas Paulig nikpau

🎲
Data!
View GitHub Profile
@nikpau
nikpau / moon_loader.py
Created June 11, 2023 08:42
A loader-like context manager using the moon emoji as a loading animation.
from itertools import cycle
from threading import Thread
import time
class Loader:
def __init__(
self,
desc="Buffering",
timeout=0.1,
):