timeutils package

Module contents

A set of methods and classes to accurately measure elapsed time.

See https://gitlab.com/cmick/timeutils for more information.

Examples

>>> from timeutils import Stopwatch
>>> sw = Stopwatch(start=True)
>>> sw.elapsed_seconds
16.282313108444214
>>> str(sw.stop())
'00:01:30.416'
>>> sw.elapsed.human_str()
'1 min, 30 secs'

See also

Documentation of the Stopwatch class.

timeutils.current_time_millis()[source]

Returns the difference, measured in milliseconds, between the current time and midnight, January 1, 1970 UTC.