mirror of https://github.com/morpheus65535/bazarr
19 lines
357 B
Python
19 lines
357 B
Python
|
"""
|
||
|
Timer context manager, only used in debug.
|
||
|
|
||
|
"""
|
||
|
|
||
|
from time import time
|
||
|
|
||
|
import contextlib
|
||
|
|
||
|
|
||
|
@contextlib.contextmanager
|
||
|
def timer(subject: str = "time"):
|
||
|
"""print the elapsed time. (only used in debugging)"""
|
||
|
start = time()
|
||
|
yield
|
||
|
elapsed = time() - start
|
||
|
elapsed_ms = elapsed * 1000
|
||
|
print(f"{subject} elapsed {elapsed_ms:.1f}ms")
|