forked from jbon/github-mining
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeStop.py
28 lines (24 loc) · 1.05 KB
/
timeStop.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#############################################################################################
# SCRIPT INFORMATION
#############################################################################################
# LICENSE INFORMATION:
#---------------------
# timestop.py
# Delivers functions to trace execution time
# Author: Jérémy Bonvoisin
# Homepage: http://opensourcedesign.cc
# License: GPL v.3
#############################################################################################
# HEADER
#############################################################################################
import datetime
class timeStop:
def __init__(self):
self.lastStop = datetime.datetime.now()
self.firstStop = self.lastStop
def stop(self):
newStop = datetime.datetime.now()
intervalAbs = newStop - self.firstStop
intervalRel = newStop - self.lastStop
self.lastStop = newStop
return str(intervalAbs.seconds//60) +"m "+ str(intervalAbs.seconds%60) + "s elapsed (" + str(intervalRel.seconds) + "s since last stop)"