I'm trying to connect to WiFi network with python and haven't found any way so far...
from wireless import Wireless
wire = Wireless()
wire.connect(ssid=name,password=pass)
and no luck
'Exception: Unable to auto-detect the network interface.'
Another attempt:
import winwifi
name='xxxx'
password='11111'
try:
winwifi.WinWiFi.connect(name,password)
print('t')
except Exception as e:
print(e)
No error, no nothing, but not connecting and still nothing.