• 大小: 3.36KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: 天气  查询  

资源简介

Python 天气查询 示例源码

资源截图

代码片段和文件信息

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

root = Tk()

def main():
    #输入窗口
    root.title(‘天气查询‘)#窗口标题
    Label(roottext = ‘请输入城市‘).grid(row=0column=0)#设置标签并调整位置
    enter = Entry(root)#输入框
    enter.grid(row = 0column=1padx = 20 pady = 20)#调整位置
    enter.delete(0END)#清空输入框
    enter.insert(0‘绵阳‘)#设置默认文本
    #enter_text = enter.get()#获取输入框的内容5
    
    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.urlop

评论

共有 条评论