VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > temp > python入门教程 >
  • Python实用案例,Python脚本实现快速卡通化人物头像,让我想起了QQ秀时光!

前言

今天我们就利用Python脚本实现天气查询应用吧。直接开整~

效果预览:

在这里插入图片描述

一、获取天气信息

使用python获取天气有两种方式。

1、是通过爬虫的方式获取天气预报网站的HTML页面,然后使用xpath或者bs4解析HTML界面的内容。

2、另一种方式是根据天气预报网站提供的API,直接获取结构化数据,省去了解析HTML页面的步骤。

本例使用的是第二种方式,请求地址为:

http://wthrcdn.etouch.cn/weather_mini?citykey=城市代码

部分城市代码对应:

北京 101010100
天津 101030100
上海 101020100

浏览器返回的天津气温情况如下,该信息其实就是一个JSON字符串,格式化之后的样子如下所示:

{
"data": {
"yesterday": {
"date": "1日星期五",
"high": "高温 17℃",
"fx": "东北风",
"low": "低温 8℃",
"fl": "<![CDATA[<3级]]>",
"type": "多云"
},
"city": "北京",
"forecast": [
{
"date": "2日星期六",
"high": "高温 14℃",
"fengli": "<![CDATA[<3级]]>",
"low": "低温 8℃",
"fengxiang": "北风",
"type": "小雨"
},

],
"ganmao": "昼夜温差较大,较易发生感冒,请适当增减衣服。体质较弱的朋友请注意防护。",
"wendu": "12"
},
"status": 1000,
"desc": "OK"
}

获取天气的主要代码如下:

# cityCode 替换为具体某一个城市的对应编号
# 1、发送请求,获取数据
url = f'http://wthrcdn.etouch.cn/weather_mini?citykey={cityCode}'
res = requests.get(url)
res.encoding = 'utf-8'
res_json = res.json()

# 2、数据格式化
data = res_json['data']
city = f"城市:{data['city']}\n"
# 字符串格式化的一种方式 f"{}" 通过字典传递值

today = data['forecast'][0]
date = f"日期:{today['date']}\n" # \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"

result = city + date + now + temperature + fengxiang + type + tips

print(result)

二、界面的实现

1、使用Qt Designer绘制窗口,保存为ui文件
图片

2、把ui文件转为py文件

1、在生成的ui文件目录下,打开cmd
2、输入以下命令(注意替换名称)

pyuic5 -o destination.py source.ui

3、信号与槽函数的连接

# 1、清空按钮与对应函数连接
clearBtn.clicked.connect(widget.clearResult)

# 2、查询按钮与对应函数连接
queryBtn.clicked.connect(widget.queryWeather)

4、调用主窗口类

import sys
from PyQt5.QtWidgets import QApplication , QMainWindow
from WeatherWin import Ui_widget
import requests
import json

class MainWindow(QMainWindow ):
def __init__(self, parent=None):
super(MainWindow, self).__init__(parent)
self.ui = Ui_widget()
self.ui.setupUi(self)

# 通过文本框传入想要搜索的城市名称:天津
cityName = self.ui.weatherComboBox.currentText()

# 获取天气部分省略

# 在文本框显示查询结果
self.ui.resultText.setText(result)

def clearResult(self):
print('* clearResult ')
self.ui.resultText.clear()

if __name__=="__main__":
app = QApplication(sys.argv)
win = MainWindow()
win.show()
sys.exit(app.exec_())

文章到这里就结束了,感谢你的观看,Python实用脚本系列,下篇文章分享快速卡通化人物头像

为了感谢读者们,我想把我最近收藏的一些编程干货分享给大家,回馈每一个读者,希望能帮到你们。


出处:https://www.cnblogs.com/tsp728/p/15100917.html


相关教程