linux - Python Wlan Manager -


is there way in python check whether wlan router accessible?

something give input ssid , password , response if has worked or not?

check out wireless library.

from wireless import wireless wireless = wireless() wireless.connect(ssid='ssid', password='password') 

Comments