当前位置:脚本大全 > > 正文

python抓取天气数据(Python实战之制作天气查询软件)

时间:2021-10-01 01:53:42类别:脚本大全

python抓取天气数据

Python实战之制作天气查询软件

前言

本文主要给大家介绍的是关于python制作天气查询软件,下面话不多说了,来一起看看详细的介绍吧

效果图

python抓取天气数据(Python实战之制作天气查询软件)

以前,给大家分享了如何使用 pyqt5 制作猜数游戏和计时器,这一次,我们继续学习:如何使用 pyqt5 制作天气查询软件。

源代码和 exe 文件:

github 地址:https://github.com/xflywind/python-application

开发环境

准备工作

首先要获取不同城市对应的天气代码,可以从https://www.heweather.com/documents/city.html 网站下载 csv 文件(文末获取 csv 文件),拿到 csv 文件,我们首先要进行数据预处理工作。

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • import pandas as pd
  • # 将下载好的文件命名为 'city_code.csv',并删除 header
  • file = pd.read_csv('city_code.csv')
  • # 选取需要的两列信息
  • file = file.loc[:,['city_id', 'city_cn']]
  • # 读取前五行信息
  • file.head()
  • python抓取天气数据(Python实战之制作天气查询软件)

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • # 匹配 city_id 中的数字
  • def convert(x):
  •  pat = re.compile('(\d+)')
  •  return pat.search(x).group()
  •  
  • file['city_id_map'] = file['city_id'].map(convert)
  •  
  • # 建立城市与代码之间的映射关系
  • def city2id(file):
  •  code_dict = {}
  •  key = 'city_cn'
  •  value = 'city_id_map'
  •  for k, v in zip(file[key], file[value]):
  •  code_dict[k] = v
  •  return code_dict
  • code_dict = city2id(file)
  •  
  • # 将所得的字典数据存储为 txt 文件
  • import json
  • filename = 'city_code.txt'
  • with open(filename, 'w') as f:
  •  json.dump(code_dict, f)
  • 将字典存储为 txt 文件后,以后我们只需读取文件,再获取字典:

  • ?
  • 1
  • 2
  • with open(filename, 'r') as f:
  •  text = json.load(f)
  • 如果不想费工夫处理这些数据,可以直接使用文末提供的 city_code.txt 文件。

    ui 设计

    使用 qt designer,我们不难设计出以下界面:

    python抓取天气数据(Python实战之制作天气查询软件)

    如果不想设计这些界面,可以直接导入我提供的 ui_weather.py 文件。

    主体逻辑:

    我们这次使用的 api 接口为:'http://wthrcdn.etouch.cn/weather_mini?citykey=[code]',code 就是之前处理过的城市代码,比如常州的城市代码为:101191101。替换掉变量 code ,网站返回给我们一段 json 格式的文件:

    python抓取天气数据(Python实战之制作天气查询软件)

    根据这段 json 语句,我们很容易提取需要的信息:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • # 天气情况
  • data = info_json['data']
  • city = f"城市:{data['city']}\n"
  • today = data['forecast'][0]
  • date = f"日期:{today['date']}\n"
  • now = f"实时温度:{data['wendu']}度\n"
  • temperature = f"温度:{today['high']} {today['low']}\n"
  • fengxiang = f"风向:{today['fengxiang']}\n"
  • type = f"天气:{today['type']}\n"
  • tips = f"贴士:{data['ganmao']}\n"
  • 当然,我们首先要使用 requests,get 方法,来获取这段 json 代码。

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • def query_weather(code):
  •  # 模板网页
  •  html = f'http://wthrcdn.etouch.cn/weather_mini?citykey=[code]'
  •  
  •  # 向网页发起请求
  •  try:
  •  info = requests.get(html)
  •  info.encoding = 'utf-8'
  •  # 捕获 connectinerror 异常
  •  except requests.connectionerror:
  •  raise
  •  
  •  
  •  
  •  # 将获取的数据转换为 json 格式
  •  try:
  •  info_json = info.json()
  •  # 转换失败提示无法查询
  •  except jsondecodeerror:
  •  return '无法查询'
  • 下面我们介绍下本文用到的控件方法:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • # 将 textedit 设置为只读模式
  • self.textedit.setreadonly(true)
  • # 将鼠标焦点放在 lineedit 编辑栏里
  • self.lineedit.setfocus()
  • # 获取 lineedit 中的文本
  • city = self.lineedit.text()
  • # 设置文本
  • self.textedit.settext(info)
  • # 清空文本
  • self.lineedit.clear()
  • 为查询按钮设置快捷键:

  • ?
  • 1
  • 2
  • 3
  • 4
  • def keypressevent(self, e):
  • # 设置快捷键
  •  if e.key() == qt.key_return:
  •  self.queryweather()
  • 最后,我们可以使用 pyinstaller -w weather.py 打包应用程序,但是要记得打包完,将 city_code.txt 复制到 dist/weather 文件夹下,否则程序无法运行。

    以上便是本文的全部内容了,更详细的内容请见源代码。

    源代码和 exe 文件:

    github 地址:https://github.com/xflywind/python-application

    总结

    以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对开心学习网的支持。

    原文链接:https://www.jianshu.com/p/23bbc48956b9

    上一篇下一篇

    猜您喜欢

    热门推荐