您的当前位置:首页正文

【Python 爬虫 + 可视化界面】打造个性化天气查询神器,让你随时掌握天气动态!

来源:九壹网

使用Tkinter 模块实现GUI 并不是很难

代码的主体是爬虫与Tkinter。

执行程序后会先出现一个选择城市的界面,这里需要输入城市名。点击确认即会出现城市天气状况。

执行效果如下:

以下为源代码:

from tkinter import \*
import urllib.request
import gzip
import json
from tkinter import messagebox

root \= Tk()

def main():
    #输入窗口
    root.title('天气查询')#窗口标题
    Label(root,text = '请输入城市').grid(row=0,column=0)#设置标签并调整位置
    enter = Entry(root)#输入框
    enter.grid(row = 0,column=1,padx = 20, pady = 20)#调整位置
    enter.delete(0,END)#清空输入框
    enter.insert(0,'湘潭')#设置默认文本
    #enter\_text = enter.get()#获取输入框的内容
    
    running \= 1

    def get\_weather\_data() :#获取网站数据
        city\_name = enter.get()#获取输入框的内容
        url1 = 'http://wthrcdn.etouch.cn/weather\_mini?city='+urllib.parse.quote(city\_name)
        url2 \= 'http://wthrcdn.etouch.cn/weather\_mini?citykey=101010100'
        #网址1只需要输入城市名,网址2需要输入城市代码
        #print(url1)
        weather\_data = urllib.request.urlopen(url1).read()
        #读取网页数据
        weather\_data = gzip.decompress(weather\_data).decode('utf-8')
        #解压网页数据
        weather\_dict = json.loads(weather\_data)
        #将json数据转换为dict数据
        if weather\_dict.get('desc') == 'invilad-citykey':
            print(messagebox.askokcancel("xing","你输入的城市名有误,或者天气中心未收录你所在城市"))
        else:
            #print(messagebox.askokcancel('xing','bingguo'))
            show\_data(weather\_dict,city\_name)
    
    def show\_data(weather\_dict,city\_name):#显示数据
        forecast = weather\_dict.get('data').get('forecast')#获取数据块
        root1=Tk()#副窗口
        root1.geometry('650x280')#修改窗口大小
        root1.title(city\_name + '天气状况')#副窗口标题
        
        #设置日期列表
        for i in range(5):#将每一天的数据放入列表中
            LANGS = \[(forecast\[i\].get('date'),'日期'),
                        (forecast\[i\].get('fengxiang'),'风向'),
                        (str(forecast\[i\].get('fengji')),'风级'),
                        (forecast\[i\].get('high'),'最高温'),
                        (forecast\[i\].get('low'),'最低温'),
                        (forecast\[i\].get('type'),'天气')\]
            group \= LabelFrame(root1,text = '天气状况',padx = 0,pady = 0)#框架
            group.pack(padx=11,pady=0,side = LEFT)#放置框架
            for lang, value in LANGS:#将数据放入框架中
                c = Label(group,text = value + ': ' + lang)
                c.pack(anchor \= W)
        Label(root1,text \= '今日' + weather\_dict.get('data').get('ganmao'),
                fg \= 'green').place(x=40,y=20,height=40)#温馨提示
        Label(root1,text = "StarMan: 49star.com",fg = "green",bg = "yellow").place(x=10,y=255,width=125,height=20)#作者网站
        Button(root1,text = '确认并退出',width=10,command = root1.quit).place(x=500,y=230,width = 80,height=40)#退出按钮
        root1.mainloop()
    
    #布置按键    
    Button(root, text = "确认",width=10,command = get\_weather\_data)\\
            .grid(row \= 3, column=0,sticky = W, padx = 10, pady = 5)
    Button(root, text \= '退出',width=10,command = root.quit)\\
            .grid(row \= 3, column = 1, sticky = E, padx = 10, pady = 5)
    if running==1:
        root.mainloop()

if \_\_name\_\_ == '\_\_main\_\_':
    main()

包括:Python激活码+安装包、Python web开发,Python爬虫,Python数据分析,人工智能、自动化办公等学习教程。带你从零基础系统性的学好Python!开发工具,基础视频教程,项目实战源码,51本电子书籍,100道练习题等。相信可以帮助大家在最短的时间内,能达到事半功倍效果,用来复习也是非常不错的。


我还整理出了一套系统的学习路线,这套资料涵盖了诸多学习内容: 👉 这份完整版的Python学习资料已经上传,朋友们如果需要可以扫描下方二维码或者【保证100%免费】

因篇幅问题不能全部显示,请点此查看更多更全内容

Top