Esempio n. 1
0
# coding=utf-8

import time
from time import sleep
from librip.ctxmngrs import timer

with timer():
    sleep(5.5)
Esempio n. 2
0
from time import sleep
from librip.ctxmngrs import timer

with timer() as test:
    print(test)
    sleep(5.5)