-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.py
55 lines (45 loc) · 1.34 KB
/
tools.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import csv, time
LOG = "run.log"
FIRST = True
#============================================ myprint
def myprint(str):
'''
print to console and into a log file
'''
global FIRST
if FIRST:
with open(LOG, "w",encoding='utf-8') as logfile:
logfile.write(str + '\n')
FIRST = False
else:
with open(LOG, "a",encoding='utf-8') as logfile:
logfile.write(str + '\n')
print(str)
#============================================ interrupt
def interrupt(obj):
'''
Manual breakpoint
'''
print(obj)
resp = input("Continue? ")
if resp.upper() in ["N","NO"]:
print("Goodbye!")
exit(0)
#=========================================== count lines in csv file
def countLinesInCSVFile(file):
newreader = csv.reader(open(file, "r", encoding='utf-8', errors='ignore'))
nblines = 0
for i, row in enumerate(newreader):
nblines += 1
return nblines
#============================================ Timer
class Timer():
def __init__(self):
self.start = time.time()
def stop(self):
self.stop = time.time()
print("\nTreatment duration: "
+ str((round(self.stop-self.start))//60)
+ " minutes and "
+ str((round(self.stop-self.start))%60)
+ " seconds\n")