简体   繁体   English

Python Wlan Manager

[英]Python Wlan Manager

Is there a way in python to check whether a Wlan router is accessible? 有没有办法在python中检查Wlan路由器是否可访问?

Something like I give as input the SSID and the password and get as response if it has worked or not? 像我输入SSID密码那样的东西,如果它有效可以得到响应?

Check out the wireless library . 看看无线库

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM