0
Need Help With Wifi Script Python
i am trying to create a script that scans wifi networks near me and lists them. So far i am getting it to work pretty well but it only lists the ssid of the network. I want it to list the bssid and the channel and everything. My code: import wifi from wifi import Cell, Scheme networks = Cell.all('wlan0') print('Found %d Networks' % len(networks)) for network in networks: print('%s' % (network.ssid))
2 Answers