3 Star 10 Fork 5

Memory/SerialPortToDatabase

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 579 Bytes
一键复制 编辑 原始数据 按行查看 历史
'''
Author: Memory 1619005172@qq.com
Date: 2023-02-21 10:32:48
LastEditors: Memory 1619005172@qq.com
LastEditTime: 2023-02-21 20:41:06
FilePath: \SerialPortToDatabase\main.py
Description:
'''
import sys
from PyQt5 import QtCore
from PyQt5.QtWidgets import QApplication
from ui.qt_ui import SetUi
if __name__ == '__main__':
# 据说可以自适应屏幕分辨率
QtCore.QCoreApplication.setAttribute(QtCore.Qt.AA_EnableHighDpiScaling)
# 创建QT对象
app = QApplication(sys.argv)
test = SetUi()
test.show()
# 退出程序
sys.exit(app.exec_())
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/acdb/serial-port-to-database.git
git@gitee.com:acdb/serial-port-to-database.git
acdb
serial-port-to-database
SerialPortToDatabase
master

搜索帮助