📌  相关文章
📜  python wifi moudel [WinError 2] 系统找不到指定的文件 - Python代码示例

📅  最后修改于: 2022-03-11 14:45:34.745000             🧑  作者: Mango

代码示例1
#Here it is
from wifi import Cell, Scheme
Cell.all('wlan0')
cell = Cell.all('wlan0')[0]
scheme = Scheme.for_cell('wlan0', 'home', cell, passkey)
scheme.save()
scheme.activate()

scheme = Scheme.find('wlan0', 'home')
scheme.activate()