cauldron.display.elapsed()
Displays the elapsed time since the step started running.
info_outlineThis 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.
import cauldron as cd
import time
cd.display.elapsed()
time.sleep(1.37)
cd.display.elapsed()