Initial commit, basic helper classes created

This commit is contained in:
derv82
2015-05-27 09:17:09 -07:00
commit 33dff208ed
10 changed files with 619 additions and 0 deletions

11
py/Client.py Normal file
View File

@@ -0,0 +1,11 @@
class Client:
"""
Holds data for a Client (device connected to Access Point/Router)
"""
def __init__(self, bssid, station, power):
self.bssid = bssid
self.station = station
self.power = power