from simpler_timer import SimplerTimer
timer = SimplerTimer()
timer.end()
Simple as that. Batteries included - no dependencies required. 🔋
Simply pip install
$ pip install simpler-timer
For development version
$ git clone https://github.com/prince-ravi-leow/simpler_timer.git && cd simpler_timer/
$ pip install -e .
Say you want to time a simple operation.
First, import:
from simpler_timer import SimplerTimer
Simply create a SimplerTimer
object, run your operation(s), and call .end()
to stop the timer and return elapsed time in seconds.
From there, use the .report()
method to print a nicely formatted timestamp.
>>> timer = SimplerTimer()
>>> some_operation()
>>> some_other_operation()
>>> timer.end()
0:00:15.005237
>>> timer.report()
Elapsed time (H:MM:SS.ff): 0:00:15.005237
Want to recall the non-formatted time in seconds? Easy:
>>> elapsed_time = timer.recall()
>>> elapsed_time
15.005237
Use .status
attribute or Boolean evaluation with .is_active()
method:
>>> timer = SimplerTimer()
>>> timer.is_active()
True
>>> timer.end()
>>> timer.status
'Inactive'
Get progress readout of active timer:
>>> timer.start()
>>> timer.progress()
2.3714890480041504
>>> timer.progress()
5.502876043319702
>>> timer.progress()
13.753906011581421
Does what it says on the tin:
>>> timer = SimpleTimer()
>>> timer.pause()
>>> timer.is_active()
True
>>> timer.resume()
>>> timer.status
'Active (resumed)'
Note that pausing/resuming affects
.status
attribute, but.is_active()
evaluates asTrue
.
Tired of reporting execution times with a bazillion decimal places?
Worry no more - use strip = True
to purge those pesky trailing digits with extreme prejudice.
>>> timer.end()
31.928856
>>> timer.report(strip = True)
'Elapsed time (H:MM:SS): 0:00:31'
>>> timer.timestamp(strip = True)
0:00:31
Currently only works for inactive timer with
.report()
and.timestamp()
methods.
This is not a command line utility.
I originally designed the SimplerTimer
class for use in Python scripts / pipelines, where execution time could be calculated and reported in 2 short, ultra-readable statements. However, it tends to work great for interactive sessions, as having a single 'timer' object saves the headache of having to keep track of multiple intermediate variables.
While it's great for use within scripts and interactive sessions, this tool does not support being run FROM a CLI - and it most likely never will. Reason for this, is that the most simple and reliable version of this already exists in the the UNIX utility /usr/bin/time
. If you want a proper benchmarking tool, Python's own timeit
will serve you well - and works both in interactive sessions, and as a command line utility.
Honourable mention to PowerShell
Measure-Command
for our Windows friends.
🐣 Pssst - as an easter-egg, I've included the function that inspired this project: simplerer_timer()
. This is an ultra-stripped down implementation, if all you want is a timer that starts, stops and reports elapsed time (inspect docstrings for usage)