aboutsummaryrefslogtreecommitdiffstats
path: root/Web/test.py
blob: c6f871c3ce3c88064a9c689e799c77bb7870620d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import time, os
from datetime import datetime

now = datetime.now()
current_time = now.strftime("%H:%M:%S")
print("Current Time = " + current_time)

f = open("Results/results.txt", "w+")
f.write("THIS IS RESULTS TEXT\n")
f.write("Current Time = " + current_time)
f.close()
print("Running test.py for ~ 5 seconds.")
time.sleep(5)