-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataCalculation.py
34 lines (31 loc) · 1.26 KB
/
DataCalculation.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
"""
DataCalculation.py : is made to read the sorted data, calculate and
count how many unique devices are nearby, which is later imported into a txt. file (device_count.txt)
"""
import csv
from datetime import datetime
def SaveDeviceCountToTXT():
count = 0
# output_dictionary = {'ID': 'Last Seen'}
output_dictionary = {}
with open('data.csv') as csv_file:
csv_reader = csv.DictReader(csv_file, delimiter=',')
for row in csv_reader:
ID = str(row["ID"])
lastSeen_str = str(row["Timestamp"])
lastSeen_dateTime = datetime.strptime(lastSeen_str, "%m/%d/%Y, %H:%M:%S")
output_dictionary[ID] = lastSeen_dateTime
# All printstatements used only for the console, not a necessity for the program
sorted(output_dictionary)
print()
print('List of devices seen within', timeout_seconds, 'seconds:')
print()
for key in output_dictionary:
print(key, 'was seen nearby')
count = count + 1 # everytime an key/ID was found, count up.
print()
print(count, 'unique devices pinged esp32 in the last', timeout_seconds, 'seconds.')
print()
# Open the txt document, and write inside as a string.
with open('device_count.txt', 'w') as f:
f.write(count.__str__());