Pywifi 这个库现在好像使用不了,有什么其他方法检测有没有连接到无线网和自动连接指定 wifi 吗?
1
cubecube 2022-09-13 23:53:46 +08:00
直接执行 ip 命令就行?
|
2
ila 2022-09-14 00:17:27 +08:00 via Android
遍历网卡
|
3
ysc3839 2022-09-14 03:56:17 +08:00 via Android
调系统 API 。
Linux 下可能比较麻烦,因为有很多种网络管理器。NetworkManager 的话比较简单,用 D-Bus 接口即可。 |
4
bytesfold 2022-09-14 08:52:25 +08:00 via iPhone
Windows: netsh
Ubuntu: nmcli |
5
webcape233 2022-09-14 09:08:58 +08:00 via iPhone
shell ,ip -br a ,wifi 网卡应该都是 wlanx
|
6
chengyiqun 2022-09-14 14:49:32 +08:00
def get_wifi_ssid():
scan_output = check_output([r"showSSID.cmd"]) current_ssid = scan_output.decode().strip() return current_ssid |
7
chengyiqun 2022-09-14 14:49:48 +08:00
|
8
memoryone OP 我的是 mac 电脑我想用第三方库,有推荐实用的不,subprocess 这个库可以执行第三方命令,用这个库可行吗??
|