资源简介
城市天气预报查询GUI
代码片段和文件信息
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import sys
from PyQt5.QtWidgets import QWidget QApplication qApp
from PyQt5.QtCore import Qt
from Ui_weather import Ui_Form
from query import *
class Weather(QWidget Ui_Form):
def __init__(self parent=None):
# 继承主窗口类
super(Weather self).__init__(parent)
self.setupUi(self)
self.initUi()
def initUi(self):
# 维护一个城市代码字典
self.table = read_code()
# 将 textEdit 设置为只读模式
self.textEdit.setReadOnly(True)
# 将鼠标焦点放在 lineEdit 编辑栏里
self.lineEdit.setFocus()
def queryWeather(self):
# 获取 lineEdit 中的文本
city = self.lineEdit.text()
err_msg = ‘‘
try:
code = query_code(self.table city
- 上一篇:用wxPython实现串口助手
- 下一篇:五子棋游戏源码(python实现)
相关资源
- Introduction to Python Programming and Develop
- ABAQUSGUI程序开发指南PYTHON语言_139333
- Introduction to Machine Learning with Python 原
- Python GUI Programming Cookbook 2nd(AZW3+PDF)
- Math Adventures with Python: An Illustrated Gu
- python Qt GUI快速编程 PYQT编程指南.pdf
- python爬取天气数据并制图分析
- caffe windows prebuilt
- python界面图书管理系统—GUI界面版
- 《Python QT GUI快速编程 编程指南》书
- 《PYTHON QT GUI快速编程 PYQT编程指南》
- 《PYTHON QT GUI快速编程 PYQT编程指南》
- 代码:Python+TensorFlow+PyQt实现手写体数
- 爬取北上广深的全年天气质量并制图
- 机器学习课程大作业,关于统计天气
- python GUI井字棋
- python实现GUI界面的ATM系统
- 基于Python语言实现GUI爬虫程序可定向
- python可视化爬虫界面之天气查询
- python GUI编程(Tkinter) 创建子窗口及
- 基于决策树的天气大数据回归例程
- Python GUI项目:文件夹管理系统代码
- python gui界面
- Python3.x+Pyqt5实现绘图界面MainWindow类型
- Python3.x+Pyqt5实现界面和逻辑分离案例
- python 用户登录界面及code
- build_gnuradio安装log
- 基于crfsuited的医疗命名实体抽取的P
- [gui]Tkinter编程(python3.2)源码
- python实现GUI界面上下显示计算器.rar
评论
共有 条评论