timer icon indicating copy to clipboard operation
timer copied to clipboard

Python code timer, support block wise and function wise

Results 2 timer issues
Sort by recently updated
recently updated
newest added

Hi, It would be nice to have an optional `count` parameter. Sometimes, you want to time a group of similar operations and have an indication of the average time for...

When using `timer` in combination with the [Fire](https://google.github.io/python-fire/guide/#custom-serialization) the Timer object misses a __name__ when using the `@timer` annotation. Example: ```python import logging logging.basicConfig(level=logging.DEBUG) import time from timer import timer...