def
elapsed
cauldron.display.elapsed()

Displays the elapsed time since the step started running.

info_outline
This function takes no arguments
Basic Usage
The example below shows how the elapsed function can be used to get a handle on how long various parts of steps take to run.
01
02
03
04
05
06
07
08
import cauldron as cd import time cd.display.elapsed() time.sleep(1.37) cd.display.elapsed()