aboutsummaryrefslogtreecommitdiff
path: root/devel/py-ttictoc/pkg-descr
blob: b72eb0fcbcb0528f66d55ec6b4efbad1562bfb32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Time execution of blocks of code.

Tested against python 3.6+, but should work with other versions.

The easiest way to time something is with tic and toc:

import time
from ttictoc import tic,toc
tic()
time.sleep(1)
elapsed = toc()
print('Elapsed time:',elapsed)

WWW: https://github.com/hector-sab/ttictoc