这篇教程python GUI入门实例写得很实用,希望能帮到您。
python GUI入门实例
python GUI可选用的模块:pyv8,pyqt5与tkinter,tkinter是python3自带的模块,能满足基本的功能需求,语法也简单,pyv8,pyqt5稍复杂。 由于离线查询ip需要全球IP的分布数据,所以我直接选择了一个免费离线查询ip的数据包,为了读取这个包的数据还需要安装一个模块:pip install pygeoip
import tkinter
import pygeoip
class FindLocation(object):
def __init__(self):
self.gi = pygeoip.GeoIP("./GeoLiteCity.dat")
# 创建主窗口,用于容纳其它组件
self.root = tkinter.Tk()
# 给主窗口设置标题内容
self.root.title("全球定位ip位置(离线版)")
# 创建一个输入框,并设置尺寸
self.ip_input = tkinter.Entry(self.root,width=30)
# 创建一个回显列表
self.display_info = tkinter.Listbox(self.root, width=50)
# 创建一个查询结果的按钮
self.result_button = tkinter.Button(self.root, command = self.find_position, text = "查询")
# 完成布局
def gui_arrang(self):
self.ip_input.pack()
self.display_info.pack()
self.result_button.pack()
# 根据ip查找地理位置
def find_position(self):
# 获取输入信息
self.ip_addr = self.ip_input.get()
aim = self.gi.record_by_name(self.ip_addr)
# 为了避免非法值,导致程序崩溃,有兴趣可以用正则写一下具体的规则,我为了便于新手理解,减少代码量,就直接粗放的过滤了
try:
# 获取目标城市
city = aim["city"]
# 获取目标国家
country = aim["country_name"]
# 获取目标地区
region_code = aim["region_code"]
# 获取目标经度
longitude = aim["longitude"]
# 获取目标纬度
latitude = aim["latitude"]
except:
pass
# 创建临时列表
the_ip_info = ["所在纬度:"+str(latitude),"所在经度:"+str(longitude),"地域代号:"+str(region_code),"所在城市:"+str(city), "所在国家或地区:"+str(country), "需要查询的ip:"+str(self.ip_addr)]
#清空回显列表可见部分,类似clear命令
for item in range(10):
self.display_info.insert(0,"")
# 为回显列表赋值
for item in the_ip_info:
self.display_info.insert(0,item)
# 这里的返回值,没啥用,就是为了好看
return the_ip_info
def main():
# 初始化对象
FL = FindLocation()
# 进行布局
FL.gui_arrang()
# 主程序执行
tkinter.mainloop()
pass
if __name__ == "__main__":
main()
Python实现多人在线匿名聊天的小程序 将Python项目打包成EXE可执行文件(单文件,多文件,包含图片) |