python可视化爬虫界面之天气查询

作者:嗨学编程 时间:2022-09-24 07:34:54 

执行效果如下:

python可视化爬虫界面之天气查询

python可视化爬虫界面之天气查询


from tkinter import *
import urllib.request
import gzip
import json
from tkinter import messagebox
root = Tk()
def main():
 # 输入窗口
 root.title('Python学习交流群:973783996') # 窗口标题
 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, 'Python学习交流群:973783996') # 设置默认文本
 # 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()

来源:https://blog.csdn.net/fei347795790/article/details/89257220

标签:python,可视化,爬虫,界面,查询
0
投稿

猜你喜欢

  • 09七夕节各大搜索引擎LOGO欣赏

    2009-08-27 15:34:00
  • Python实现绘制3D地球旋转效果

    2021-04-17 22:25:37
  • python使用技巧-查找文件 

    2021-11-10 18:48:21
  • Python3 log10()函数简单用法

    2021-06-27 16:47:16
  • 简单的命令查看安装的python版本号

    2022-03-12 17:23:06
  • python编程实现12306的一个小爬虫实例

    2021-09-23 10:58:14
  • Python连接HDFS实现文件上传下载及Pandas转换文本文件到CSV操作

    2023-09-28 13:34:17
  • Oracle数据表中的死锁情况解决方法

    2024-01-15 11:23:01
  • Python issubclass和isinstance函数的具体使用

    2021-08-22 01:39:06
  • Oracle时间日期操作方法小结第1/2页

    2010-11-29 19:40:00
  • 使用 Python 获取 Linux 系统信息的代码

    2022-04-15 06:32:12
  • MySQL数据库中删除重复记录的方法总结[推荐]

    2024-01-13 07:13:45
  • TensorFlow自定义损失函数来预测商品销售量

    2023-01-08 07:01:51
  • 属性与 @property 方法让你的python更高效

    2023-02-02 08:20:18
  • vue keep-alive请求数据的方法示例

    2024-06-05 09:19:11
  • PHP日志LOG类定义与用法示例

    2023-09-10 20:02:56
  • Golang reflect反射的使用实例

    2024-05-05 09:32:17
  • mysql多版本并发控制MVCC的实现

    2024-01-23 21:49:28
  • arcgis使用Python脚本进行批量截图功能实现

    2021-04-25 03:40:05
  • 日期垂直排列的两种技巧

    2009-08-28 12:38:00
  • asp之家 网络编程 m.aspxhome.com