IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> python-tkinter-本机wifi密码查看器 -> 正文阅读

[Python知识库]python-tkinter-本机wifi密码查看器

wifi密码查看器

import os
import re
import tkinter as tk
# ttk代替tk创建美化对象 文档地址:ttkbootstrap.readthedocs.io
from tkinter import ttk
# 本地预览样式 python -m ttkbootstrap
from ttkbootstrap import Style
name =''
st1=st2=''
aa=gorp=''
v=''
def allwifi():
    global name
    fp = os.popen('netsh wlan show profiles')
    all = fp.read()
    aname = re.compile(r':(.*)')
    name = aname.findall(str(all))

def view_key(xname):
    xname=xname.strip()
    global st1,st2
    try:
        fp=os.popen('netsh wlan show profiles name="{}" key=clear'.format(xname))
        all=fp.read()
        bb=re.search(r'关键内容 *:(.*)',all)
        dd=re.search(r'名称 *:(.*)',all)
        st1="wifi名称:{}\nwifi密码:{}".format(dd.group(1),bb.group(1))
    except:
        st1="该WIFI无密码"
    st2 = tk.StringVar()
    st2.set(st1)

def xuanze():
    global aa,v,name
    v=tk.StringVar(window)
    v.set("选择你要查看密码的WIFI名称")
    om = tk.OptionMenu(window,v,*name).grid(row=0,column=0)
    bt=ttk.Button(window,text="查看",style='Primary.TButton',command=wo)
    bt.place(x=330,y=0)

def kongjian():
    global gorp
    gorp=tk.LabelFrame(window,text="WIFI信息",padx=5,pady=5,width=390,height=80,labelanchor='n')
    gorp.grid(row=3,padx=5,pady=5)
    gorp.grid_propagate(0) #大小不随子组件界面改变

def wo():
    view_key(v.get())
    gorp.grid_forget()
    kongjian()
    tk.Label(gorp,textvariable=st2,wraplength=200,justify="left").grid(row=4)


if __name__ == '__main__':
    window = tk.Tk()
    window.title('Wifi密码查看器')
    tk.Label(gorp,text="其实我是一个杀手",wraplength=200,justify="left").grid(row=4)
    style = Style(theme='sandstone')
    window = style.master
    winWidth = 400
    winHeight = 160
    # 获取屏幕分辨率
    screenWidth = window.winfo_screenwidth()
    screenHeight = window.winfo_screenheight()
    x = int((screenWidth - winWidth) / 2)
    y = int((screenHeight - winHeight) / 2)
    # 设置窗口初始位置在屏幕居中
    window.geometry("%sx%s+%s+%s" % (winWidth, winHeight, x, y))
    # window.attributes('-alpha',0.9)
    window.attributes('-topmost', -1)
    # window['bg'] = 'blue'
    allwifi()
    xuanze()
    kongjian()
    window.mainloop()
# PyInstaller打包命令:pyinstaller -F -i favicon.ico mima.py --noconsole
# 主题问题:修改mima.spec 
# datas=[('themes.json', 'ttkbootstrap'), ('Symbola.ttf', 'ttkbootstrap')]
# 然后pyinstaller mima.spec 即可解决因为美化无法打包问题
  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-10-28 12:20:59  更:2021-10-28 12:21:40 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 23:42:19-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码