Is there a way in python to check whether a Wlan router is accessible?
Something like I give as input the SSID and the password and get as response if it has worked or not?
Advertisement
Answer
Check out the wireless library.
from wireless import Wireless wireless = Wireless() wireless.connect(ssid='ssid', password='password')