21 lines
608 B
Plaintext
21 lines
608 B
Plaintext
# 基础GUI框架
|
||
PySide6>=6.2.0
|
||
|
||
# 数据库连接器
|
||
psycopg2-binary>=2.9.3 # PostgreSQL连接器(二进制版本,无需编译)
|
||
mysql-connector-python>=8.0.27 # MySQL连接器
|
||
|
||
# 通信和协议
|
||
pymodbus>=3.0.0 # Modbus通信协议
|
||
pyserial>=3.5 # 串口通信
|
||
|
||
# 工具库
|
||
python-dateutil>=2.8.2 # 日期时间处理
|
||
pytz>=2022.1 # 时区处理
|
||
pandas>=1.4.0 # 数据分析和处理
|
||
|
||
# 可选依赖
|
||
pillow>=9.0.0 # 图像处理,用于相机功能
|
||
pynput>=1.7.6 # 键盘监听
|
||
requests>=2.27.1 # HTTP请求
|
||
opencv-python>=4.5.5.0 # 图像处理和视频功能,用于本地图像播放 |