I have a command line program in Python that takes a while to finish. I want to know the exact time it takes to finish running.
I\'ve looked at the timeit
timeit
In IPython, "timeit" any script:
def foo(): %run bar.py timeit foo()