Originally Forked from the Time-Logger Runtimecheck is an efficient Python library to help you quickly measure your functions's running time on a jupyter noetbook
On the terminal
pip install runtimecheckOn a Jupyter Notebook
!pip install runtimecheckimport time
from runtimecheck.Timer import check_runtime
@check_runtime()
def hello_world():
time.sleep(2)
print("Hello World")
say_hi()>> Hello World
>> hello_world ran in 2.0001 secondsPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.