-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsv_to_json.py
executable file
·75 lines (58 loc) · 2.47 KB
/
csv_to_json.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import csv
import json
import os
wifi_csv_file = 'csv/wifi_networks.csv'
wifi_json_file = 'json/wifi_networks.json'
device_csv_file = 'csv/device-01.csv'
device_json_file = 'json/connected_devices.json'
def csv_to_json_wifi(csv_filepath, json_filepath):
wifi_networks = []
try:
if not os.path.exists(csv_filepath):
print(f"CSV file not found: {csv_filepath}")
return
with open(csv_filepath, mode='r') as file:
csv_reader = csv.DictReader(file)
for row in csv_reader:
wifi_network = {
"BSSID": row.get("BSSID", "").strip(),
"ESSID": row.get("ESSID", "").strip(),
"Signal": row.get("Signal", "").strip(),
"Channel": row.get("Channel", "").strip(),
"Encryption": row.get("Encryption", "").strip()
}
wifi_networks.append(wifi_network)
with open(json_filepath, mode='w') as json_file:
json.dump(wifi_networks, json_file, indent=4)
print(f"WiFi network data converted to JSON and stored in: {json_filepath}")
except Exception as e:
print(f"Error converting CSV to JSON: {e}")
def csv_to_json_devices(csv_filepath, json_filepath):
devices = []
try:
if not os.path.exists(csv_filepath):
print(f"CSV file not found: {csv_filepath}")
return
with open(csv_filepath, mode='r') as file:
csv_reader = csv.reader(file)
capture = False
for row in csv_reader:
if len(row) > 0 and row[0].strip() == 'Station MAC':
capture = True
continue
if capture and len(row) > 0 and row[0].strip():
mac_address = row[0].strip()
if mac_address:
device_info = {
'station': mac_address,
'bssid': row[5].strip()
}
devices.append(device_info)
with open(json_filepath, mode='w') as json_file:
json.dump(devices, json_file, indent=4)
print(f"Connected device data converted to JSON and stored in: {json_filepath}")
except Exception as e:
print(f"Error converting CSV to JSON: {e}")
if __name__ == "__main__":
csv_to_json_wifi(wifi_csv_file, wifi_json_file)
csv_to_json_devices(device_csv_file, device_json_file)