aboutsummaryrefslogtreecommitdiffstats
path: root/Web/PI/Uploads/upload.py
diff options
context:
space:
mode:
Diffstat (limited to 'Web/PI/Uploads/upload.py')
-rw-r--r--Web/PI/Uploads/upload.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/Web/PI/Uploads/upload.py b/Web/PI/Uploads/upload.py
deleted file mode 100644
index 9cbc73a..0000000
--- a/Web/PI/Uploads/upload.py
+++ /dev/null
@@ -1,13 +0,0 @@
-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)