Используйте ipython Magic в скрипте

from IPython import get_ipython
ipython = get_ipython()
ipython.magic("timeit abs(-42)")
bougui