使用到的库:pywifi。
首先要判断自己的电脑是否已经连接wifi,在这里创建一个无线对象并获取无线网卡,代码如下:
wifi = pywifi.PyWifi()
# 获取第一个无线网卡
ifaces = wifi.interfaces()[0]
print(ifaces)
选择要连接的wifi名称,检查wifi的状态,查看wifi的加密算法,代码如下:
# 创建wifi连接文件
profile = pywifi.profile()
# 连接的wifi名称
profile.ssid = "Liuxm0522"
# 网卡的开发状态
profile.auth = const.AUTH_ALG_OPEN
# wifi的加密算法,一般wifi加密算法为wps
profile.akm.append(const.AKM_TYPE_WPA2PSK)
#加密单元
profile.cipher=const.CIPHER_TYPE_CCMP
# 设置新的连接文件
tep_profile = ifaces.add_network_profile(profile)
ifaces.connect(tep_profile)
# wifi连接时间
time.sleep(3)
if ifaces.status() == const.IFACE_CONNECTED:
return True
else:
return False
path = "D:\\Pycharm_Code\\Wifi\\password.txt"
file = open(path, "r")