python版本wifi共享工具
原先不知道win7系统也可以当作无线路由器,既然知道了这个东西那么就搞搞了
使用python写的一个wifi共享工具,还不够完善,有些功能还没做(说明:internet共享连接需要手动设置)......
别的不说了,贴上源代码吧!
#-*- coding:utf-8 -*-
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
import os
import wx
import ConfigParser
myconfig=ConfigParser.ConfigParser()
myconfig.read('config.ini')
new_ssid=str(myconfig.get('ssid', 'myssid'))
new_passwd=str(myconfig.get('passwd','mypasswd'))
new_security=str(myconfig.get('security_type','mysecurity'))
new_showpwd=str(myconfig.get('showpwd','showpwd'))
new_security_dict={'WPA2':0,'无身份验证(开放式)':1}
class frame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self,None,-1,"Wi-Fi共享帮手",size=(390,240),style=wx.CAPTION|wx.MINIMIZE_BOX|wx.CLOSE_BOX)
self.panel=wx.Panel(self,-1)
ssid=wx.StaticText(self.panel,-1,"网络SSID:",pos=(15,20))
self.ssid_input=wx.TextCtrl(self.panel,-1,value=new_ssid,size=(225,20),pos=(80,20))
self.ssid_input.Refresh()
self.ssid_input.SetMaxLength(31)
self.ssid_input.Bind(wx.EVT_TEXT,self.ssid_evt)
lenssid=wx.StaticText(self.panel,-1,"(1-31个字符)",pos=(310,20))
security=wx.StaticText(self.panel,-1,"网络安全类型:",pos=(15,50))
self.security=wx.ComboBox(self.panel,-1,choices=['WPA2','无身份验证(开放式)'],pos=(100,50))
self.security.Select(new_security_dict[new_security])
self.security.Bind(wx.EVT_COMBOBOX, self.security_evt)
self.passwd_st=wx.StaticText(self.panel,-1,"网络密钥:",pos=(15,80))
self.passwd=wx.TextCtrl(self.panel,-1,value=new_passwd,style=wx.TE_PASSWORD,size=(225,25),pos=(75,80))
self.passwd_no=wx.TextCtrl(self.panel,-1,value=new_passwd,size=(225,25),pos=(75,80))
self.passwd_no.Bind(wx.EVT_TEXT, self.passwd_no_evt)
self.passwd.Bind(wx.EVT_TEXT, self.passwd_evt)
self.passwd.SetMaxLength(63)
self.lenpwd=wx.StaticText(self.panel,-1,"(8-63个字符)",pos=(310,80))
self.showpwd=wx.CheckBox(self.panel,-1,"显示密钥字符",pos=(15,110))
self.showpwd.Bind(wx.EVT_CHECKBOX,self.showpwd_evt)
self.value=wx.CheckBox(self.panel,-1,"保存这个网络设置",pos=(115,110))
self.value.Bind(wx.EVT_CHECKBOX,self.value_evt)
self.auto=wx.CheckBox(self.panel,-1,"开机自动启动Wi-Fi共享",pos=(235,110))
self.auto.Bind(wx.EVT_CHECKBOX, self.auto_evt)
self.start_wifi=wx.Button(self.panel,-1,"开启Wi-Fi",pos=(15,150))
self.start_wifi.Bind(wx.EVT_BUTTON,self.start_wifi_evt)
self.stop_wifi=wx.Button(self.panel,-1,"关闭Wi-Fi",pos=(120,150))
self.stop_wifi.Bind(wx.EVT_BUTTON,self.stop_wifi_evt)
if myconfig.get('windows','start_on_windows')=='true':
self.auto.SetValue(True)
else:
self.auto.SetValue(False)
if myconfig.get('save_config','save_config')=='true':
self.value.SetValue(True)
else:
self.value.SetValue(False)
if str(self.security.GetValue())=="无身份验证(开放式)":
self.passwd.Hide()
self.passwd_st.Hide()
self.lenpwd.Hide()
self.passwd_no.Hide()
self.showpwd.Disable()
if new_showpwd=="true":
self.passwd.Hide()
self.showpwd.SetValue(True)
else:
self.passwd_no.Hide()
self.showpwd.SetValue(False)
def showpwd_evt(self,evt):
if self.showpwd.GetValue() is True:
self.passwd.Hide()
self.passwd_no.Show()
myconfig.set('showpwd','showpwd','true')
myconfig.write(open('config.ini','w'))
else:
self.passwd_no.Hide()
self.passwd.Show()
myconfig.set('showpwd','showpwd','false')
myconfig.write(open('config.ini','w'))
def auto_evt(self,evt):
if myconfig.get('windows','start_on_windows')=='true':
myconfig.set('windows', 'start_on_windows', 'false')
myconfig.write(open('config.ini','w'))
else:
myconfig.set('windows', 'start_on_windows', 'true')
myconfig.write(open('config.ini','w'))
def value_evt(self,evt):
if myconfig.get('save_config','save_config')=='true':
myconfig.set('save_config','save_config','false')
myconfig.set('ssid','myssid','')
myconfig.set('passwd','mypasswd','')
myconfig.set('security_type','mysecurity','WPA2')
myconfig.write(open('config.ini','w'))
else:
myconfig.set('save_config','save_config','true')
myconfig.set('ssid','myssid',str(self.ssid_input.GetValue()))
myconfig.set('passwd','mypasswd',str(self.passwd.GetValue()))
myconfig.set('security_type','mysecurity',str(self.security.GetValue()))
myconfig.write(open('config.ini','w'))
def ssid_evt(self,evt):
myconfig.set('ssid','myssid',str(self.ssid_input.GetValue()))
myconfig.write(open('config.ini','w'))
def passwd_evt(self,evt):
myconfig.set('passwd','mypasswd',str(self.passwd.GetValue()))
myconfig.write(open('config.ini','w'))
self.passwd_no.SetValue(self.passwd.GetValue())
def passwd_no_evt(self,evt):
myconfig.set('passwd','mypasswd',str(self.passwd_no.GetValue()))
myconfig.write(open('config.ini','w'))
self.passwd.SetValue(self.passwd_no.GetValue())
def security_evt(self,evt):
myconfig.set('security_type','mysecurity',str(self.security.GetValue()))
myconfig.write(open('config.ini','w'))
if str(self.security.GetValue())=="无身份验证(开放式)":
self.passwd.Hide()
self.passwd_st.Hide()
self.lenpwd.Hide()
self.passwd_no.Hide()
self.showpwd.Disable()
else:
self.showpwd.Enable()
self.passwd_st.Show()
self.lenpwd.Show()
if self.showpwd.GetValue() is True:
self.passwd_no.Show()
else:
self.passwd.Show()
def start_wifi_evt(self,evt):
os.system("net start wlansvc")
os.system("netsh wlan set hostednetwork mode=allow")
if str(self.security.GetValue())=="无身份验证(开放式)":
self.passwd.SetValue("")
os.system("netsh wlan set hostednetwork ssid=%s key=%s"%(self.ssid_input.GetValue(),self.passwd.GetValue()))
os.system("netsh wlan start hostednetwork")
self.start_wifi.Disable()
def stop_wifi_evt(self,evt):
os.system("netsh wlan stop hostednetwork")
self.start_wifi.Enable()
class app(wx.App):
def OnInit(self):
myframe=frame()
myframe.Show()
return True
if __name__=="__main__":
myapp=app()
myapp.MainLoop()
python版本wifi共享工具的更多相关文章
- 转python版本的curl工具pycurl学习
一 pycurl介绍 pycurl模块为libcurl库提供了一个python接口.libcurl是一个开源免费且方便快捷的基于客户端的url传输库,支持FTP,HTTP,HTTPS,IMAP,IMA ...
- 安装的 Python 版本太多互相干扰?pyenv 建议了解一下。
写在之前 我们都知道现在的 Python 有 Python2 和 Python3,但是由于各种乱七八糟的原因导致这俩哥们要长期共存,荣辱与共,尴尬的是这哥俩的差异还比较大,在很多时候我们可能要同时用到 ...
- 自动化运维工具ansible-如何设置客户端多python版本问题
问题:在使用ansible进行管理客户主机时,发现客户主机安装了多个版本的python,并且默认版本为3.0 shell>>cat list 192.168.2.9 shell>&g ...
- Python多版本共存管理工具之pyenv
目录 Table of Contents 1. 安装pyenv 2. 安装Python 3.0 使用python 参考 Table of Contents 经常遇到这样的情况: 系统自带的Python ...
- Python—版本和环境的管理工具(Pipenv)
pipenv简介 虚拟环境本质是一个文件,是为了适应不同的项目而存在.pipenv相当于virtualenv和pip的合体. 整合了 pip+virtualenv+Pipfile,能够自动处理好包的依 ...
- Python实现代码统计工具——终极加速篇
Python实现代码统计工具--终极加速篇 声明 本文对于先前系列文章中实现的C/Python代码统计工具(CPLineCounter),通过C扩展接口重写核心算法加以优化,并与网上常见的统计工具做对 ...
- anaconda虚拟环境管理,从此Python版本不用愁
1 引言 在前几篇博文中介绍过virtualenv.virtualenvwrapper等几个虚拟环境管理工具,本篇要介绍的anaconda也有很强大的虚拟环境管理功能,甚至相比virtualenv.v ...
- Kali Linux中前十名的Wifi攻击工具
无 线网络的攻与防一直是比较热门的话题,由于无线信号可以被一定范围内的任何人接收到(包括死黑阔),这样就给WIFI带来了安全隐患:路由器生产厂商和网 络服务供应商(ISPs)的配置大多是默认开启了WP ...
- Python的包管理工具
Python的包管理工具 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.为什么使用包管理 Python的模块或者源文件直接可以复制到目标项目目录中,就可以导入使用了. 但是为了 ...
随机推荐
- 一些窗口API函数,比如SetForegroundWindow,SwitchToThisWindow
SetForegroundWindowSwitchToThisWindow procedure TApplication.BringToFront;varTopWindow: HWnd;beginif ...
- Mysql 5.1升级为mysql 5.6遇到的问题及解决方式
yum是不可行的.因为yum源没更新,我已经使用了163网易的源,但是还是不行.最新版仍然不是5.6.没办法,mysql分区是5.5之后的功能,要使用分区功能,就必须升级.. 去官网下载地址:http ...
- 键盘皇者 RealForce 104Pro独家评测
http://tech.sina.cn/?sa=t84d20738943v44&page=2&pwt=rest2&vt=4&from=mbaidu&clickt ...
- 流式计算-Jstorm提交Topology过程(上)
Topology是Jstorm对有向无环图的抽象,内部封装了数据来源spout和数据处理单元bolt,以及spout和bolt.bolt和bolt之间的关系.它能够被提交到Jstorm集群. 本文以J ...
- Ajax - 异步调用后台程序 -JSON
在ASP.NET使用ajax时基本上每个操作都要新建一个.ashx处理程序,页面很多,每个页面的操作也很多,这样的话项目就会产生新建很多很多的.ashx页面,能不能把方法写在后台中,然后Jquery直 ...
- 在JAVA中开发应用之html5离线应用
1.环境搭建(Tomcat为例): 在Tomcat中的conf配置文件中web.xml中添加离线配置: <!--HTML5--> <mime-mapping> <ext ...
- Android 系统搜索框(有浏览记录)
实现Android 系统搜索框(有浏览记录),先看下效果: 一.配置搜索描述文件 要在res中的xml文件加创建sreachable.xml,内容如下: <?xml version=" ...
- Delphi的类型转换 good
Delphi是一种强类型转换的语言.在VC中,赋值符用″=″,例如x=1;到了Delphi赋值符就变成了″:=″,例如x:=1. 从赋值时用符号″:=″而不用″=″,就隐约可见Delphi对类型匹配要 ...
- Spring配置DataSource数据源
在Spring框架中有例如以下3种获得DataSource对象的方法: 1.从JNDI获得DataSource. 2.从第三方的连接池获得DataSource. 3.使用DriverManagerDa ...
- fck编辑器的使用
FCK编辑器的使用 注意:编辑器有浏览器缓存,所以修改配置后,一定要删一下缓存 这个编辑器是采用 html+javascript 开发出来的 通常作为插件来使用: 1,下载插件包 2,解压,加压之后看 ...