這是一個使用 Python 和 PyQt6 開發的 Windows 天氣小工具,可以顯示台灣各地即時天氣資訊。專案具有以下特點:
- import sys
- import os
- from dotenv import load_dotenv
- import requests
- from PyQt6.QtWidgets import *
- from PyQt6.QtCore import Qt, QTimer
- from PyQt6.QtGui import QIcon, QAction
- class WeatherApp(QMainWindow):
- def __init__(self):
- super().__init__()
- self.init_ui() # UI 初始化
- self.setup_system_tray() # 系統托盤設置
- self.setup_auto_update() # 自動更新設置
- def init_ui(self):
- # 視窗設置
- self.setWindowTitle("天氣小工具")
- self.setGeometry(1200, 100, 300, 200)
- # 地區選擇
- self.location_combo = QComboBox()
- self.locations = [...] # 台灣各地區列表
- def setup_system_tray(self):
- self.tray_icon = QSystemTrayIcon(self)
- self.tray_menu = QMenu()
- # 添加托盤選單項目
- self.show_action = QAction("顯示", self)
- self.hide_action = QAction("隱藏", self)
- def get_weather(self):
- # API 請求
- url = "https://opendata.cwa.gov.tw/api/v1/rest/datastore/F-C0032-001"
- params = {
- "Authorization": self.api_key,
- "locationName": location
- }
- # 數據處理和顯示
- # ...
- def setup_auto_update(self):
- self.update_timer = QTimer(self)
- self.update_timer.timeout.connect(self.get_weather)
- self.update_timer.start(30 * 60 * 1000) # 30分鐘更新
- # .env 文件
- CWA_API_KEY=your-api-key-here
- # 程式中載入
- load_dotenv()
- self.api_key = os.getenv('CWA_API_KEY')
- try:
- response = requests.get(url, params=params)
- data = response.json()
- # 處理數據
- except Exception as e:
- QMessageBox.warning(self, "錯誤", str(e))
- pyinstaller --noconsole --onefile --icon=icons/app_icon.ico --add-data ".env;." weather_app.py
- weather_app/
- ├── weather_app.py
- ├── .env
- ├── icons/
- │ ├── app_icon.ico
- │ └── weather_icons/
- └── requirements.txt
這個專案展示了如何使用 PyQt6 開發一個實用的桌面應用程式。通過合理的架構設計和功能實現,創建了一個既實用又易用的天氣小工具。關鍵技術點包括:
這個專案可以作為 PyQt6 桌面應用開發的參考範例,特別是在系統托盤應用和天氣資訊顯示方面。