1 Star 4 Fork 1

yuanyufei/lazycast

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
scan.py 404 Bytes
一键复制 编辑 原始数据 按行查看 历史
homeworkc 提交于 2020-04-05 21:55 . modified: README.md
import os
loop = True
while loop:
os.system('sudo iwlist wlan0 scan > scan.txt')
infile = open('scan.txt','r')
lines = infile.readlines()
infile.close()
display = False
for line in lines:
if 'DIRECT' in line:
display = True
loop = False
elif 'Cell' in line:
display = False
if display:
print line,
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/LEAVES2018/lazycast.git
git@gitee.com:LEAVES2018/lazycast.git
LEAVES2018
lazycast
lazycast
master

搜索帮助