Skip to content
Advertisement

Python Wlan Manager

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')
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement