资源简介
pyqt5的天气查询系统
代码片段和文件信息
# -*- coding: utf-8 -*-
import sys
from PyQt5.QtWidgets import *
from WeatherWin import Ui_Form
import requests
class MainWindow(QMainWindow):
def __init__(self parent=None):
super(MainWindow self).__init__(parent)
self.ui = Ui_Form()
self.ui.setupUi(self)
self.ui.clearBtn.clicked.connect(self.clearResult)
self.ui.queryBtn.clicked.connect(self.queryWeather)
def queryWeather(self):
print(‘* queryWeather‘)
cityName = self.ui.weatherComboBox.currentText()
cityCode = self.transCityName(cityName)
web = ‘http://www.weather.com.cn/data/sk/‘ + cityCode + ‘.html‘
rep = requests.get(web)
rep.encoding = ‘utf-8‘
# print(rep.json())
msg1 = ‘城市: %s‘ % rep.js
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2763 2020-06-03 08:54 Weather\main.py
文件 213 2020-06-03 08:55 Weather\setup.py
文件 21 2020-06-02 13:25 Weather\turn_to_exe.ps1
文件 2606 2020-06-03 08:53 Weather\WeatherWin.py
文件 2309 2020-06-03 08:53 Weather\__pycache__\WeatherWin.cpython-38.pyc
目录 0 2020-06-12 12:38 Weather\__pycache__
目录 0 2020-06-12 12:38 Weather
----------- --------- ---------- ----- ----
7912 7
相关资源
- Python + PyQt5 + MySQL模拟QQ的聊天与娱乐
- PyQt4-4.11.4-gpl-Py2.7-Qt4.8.7-x32
- Introduction to Python Programming and Develop
- 手写数字识别:Python+BP神经网络+PYQ
- PyQt4-4.11.1-gpl-Py2.7-Qt4.8.6-x32.exe
- 创建画板,实时在线手写体识别
- PyQt5-5.5.1-gpl-Py3.4-Qt5.5.1-x32
- python Qt GUI快速编程 PYQT编程指南.pdf
- pyqt5实现自动获取IP软件
- python-vlc二次封装,可用于pyqt
- 基于TensorFlow的手写数字识别程序
- 《Python QT GUI快速编程 编程指南》书
- tesseract V2.0()
- 《PYTHON QT GUI快速编程 PYQT编程指南》
- 《PYTHON QT GUI快速编程 PYQT编程指南》
- 代码:Python+TensorFlow+PyQt实现手写体数
- python聊天室---pyqt5+socket+Thread聊天室
- Pyqt5 按钮事件绘制图形
-
PyQ5 Mtaplotlib Datafr
ame画一条随鼠标移 - python实时读取串口数据并自动保存至
- pyqt5做一个一个时钟demo(python3)
-
pyQt5_wavepla
yer python计算声音分贝 语 - 实现小学三年级口算题生成器
- 续Python3.x+Pyqt5实现主窗体里QToolBox导航
- Python3.x+Pyqt5实现主窗体里的工具栏,
- Python3.x+Pyqt5实现界面左侧树形导航栏
- Python3.x+Pyqt5实现绘图界面MainWindow类型
- Python3.x+Pyqt5实现界面和逻辑分离案例
- python参考文献
- Qt调用python解析百度云API实现人脸图像
评论
共有 条评论