C
de
S
pace
Explore
Log In
Explore
Sign Up
Log In
marleyfischer663
22.05.2026 11:23
1
CSV reader #78
Ideas welcome
algo.py
def debounce(fn, delay): import time last = [0.0] def wrapper(*args): now = time.time() if now - last[0] >= delay: last[0] = now return fn(*args) return wrapper
utils.py
import random def gen_password(length=12): chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%" return "".join(random.choice(chars) for _ in range(length)) print(gen_password())
Idle
Try It
Clear
Log in
to leave a comment
Are you sure you want to delete this post?
Delete
Cancel