Skip to content
Permalink
Browse files
Create filter.py
  • Loading branch information
shawnhos committed Mar 21, 2019
1 parent 87fd7d7 commit 4f588cf0a15285f400d2d57e290e0424ea4b33c9
Showing 1 changed file with 18 additions and 0 deletions.
@@ -0,0 +1,18 @@
import csv
import os

with open('baseline.csv') as file2:
reader2 = csv.reader(file2)

base_dict = {}
for row in reader2:
if len(row) == 0:
continue
base_dict[row[2]] = {'BSSID':row[0],'PWR':row[1]}


# if test_dict.keys() in base_dict.keys():
# print ("safe")

print(base_dict)

0 comments on commit 4f588cf

Please sign in to comment.