Classes defined in module timer
A class for measuring elapsed time.
A Timer object measures elapsed real time since a specified time, which by default is the time of the creation of the Timer.
Parameters:
(Re)Start the timer.
Sets the start time of the timer to the specified value, or to the current time by default.
Parameters:
Read the timer.
Returns the elapsed time since the last reset (or the creation of the timer) as a datetime.timedelta object.
If reset=True, the timer is reset to the time of reading.
Return the timer readings in seconds.
The default return value is a rounded integer number of seconds. With rounded == False, a floating point value with granularity of 1 microsecond is returned.
If reset=True, the timer is reset at the time of reading.
Functions defined in module timer