Fix dilatometer, other misc stuff
[matches/MCTX3420.git] / testing / count.py
1 #!/usr/bin/python -u
2
3 import sys
4 import os
5 import time
6 import datetime
7
8 start = datetime.datetime.now()
9 while True:
10         timed = map(float, str(datetime.datetime.now() - start).split(":"))
11         count = timed[0]*60.0*60.0+timed[1]*60.0+timed[2]
12         print(str(count))
13         
14

UCC git Repository :: git.ucc.asn.au