A nice Python timer class
Python Timer Functions: Three Ways to Monitor Your Code
The article Python Timer Functions: Three Ways to Monitor Your Code looks like it's a pretty good tutorial that leaves you with a usable timer for your code. You can use it as:
- a class
- a decorator
- context manager
All useful …