A small import for timing files (saves you about 10 seconds of hard work). In under 50 lines of code. No further packages needed.
It wraps your file in:
import time
start = time.time()
...
end = time.time()
print(end - start)Get the file via:
wget https://raw.githubusercontent.com/avocardio/timer/main/timer.pyThen import it in your file:
from timer import timer
timer()
...And run the file with:
python your_file.py -tInspired by Geohot's debugging optimization scripts and the search for the ever faster implementation.