Python上的Wifi扫描仪

Python上的Wifi扫描仪

本文介绍了Python上的Wifi扫描仪的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

扫描wifi并在python中查看名字的程序



我尝试过的事情:



来自wifi导入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()



bit it does not working

解决方案

a program that scan wifi and see the names in python

What I have tried:

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()


bit it didnt work

解决方案


这篇关于Python上的Wifi扫描仪的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 01:25