codetiming
codetiming copied to clipboard
A flexible, customizable timer for your Python code
A small quality-of-life improvement would be if the default format string included the name attribute by default. ``` python >>> t = Timer('foobar') >>> t.start() >>> time.sleep(1) >>> t.stop() foobar...
It would be helpful if there was a way to start the timer when it is instantiated, such as `t = Timer().start()` or `t = Timer(now=True)`. This can reduce the...
I am wondering if the Time class stores all the timing values it receives. I was intrigued since median computation would require something like that. If it does store it,...