Skip to content

Instantly share code, notes, and snippets.

View diadochos's full-sized avatar

Takeshi Teshima diadochos

View GitHub Profile
@diadochos
diadochos / timer.py
Created January 8, 2020 07:39
Python Timer utility class
import timeit
class Timer:
"""Timer utility class.
Usage:
with Timer() as t:
sleep(10)
print('Slept for:', t.time)
"""