Skip to content

Instantly share code, notes, and snippets.

@aleenprd
Last active October 20, 2022 17:40
Show Gist options
  • Save aleenprd/90dcb1b83af2faa3b407172521f1824b to your computer and use it in GitHub Desktop.
Save aleenprd/90dcb1b83af2faa3b407172521f1824b to your computer and use it in GitHub Desktop.
timing_decorator
from time import time
def timing(f: Callable) -> None:
"""Times a function runtime in minutes.
Args:
f (callable): a function/method.
"""
def wrap(*args, **kw):
ts = time()
result = f(*args, **kw)
te = time()
exec_time = round((te - ts) / 60, 4)
print(f"\nExecution time: {exec_time} minutes.")
return wrap
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment