Last active
October 20, 2022 17:40
-
-
Save aleenprd/90dcb1b83af2faa3b407172521f1824b to your computer and use it in GitHub Desktop.
timing_decorator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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