Initial commit, basic helper classes created
This commit is contained in:
11
py/Client.py
Normal file
11
py/Client.py
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user