3. PyQt5-通过Python脚本把当前目录下的所有.ui文件转换为.py文件

Posted Coding, Coding!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3. PyQt5-通过Python脚本把当前目录下的所有.ui文件转换为.py文件相关的知识,希望对你有一定的参考价值。

  • Author: Notus(hehe_xiao@qq.com)
  • Create: 2019-02-10
  • Update: 2019-02-16

PyQt5-通过Python脚本把当前目录下的所有.ui文件转换为.py文件

环境

操作系统: Windows 10 专业版 64-bit (10.0, Build 16299) (16299.rs3_release.170928-1534)
Python Version: 3.7.1
PyQt5 Version: 5.11.3
Qt Designer Version: 5.11.2

python脚本代码如下(将当前目录下的所有.ui文件转为.py文件)

\'\'\'
	通过Python脚本把.ui文件转换为.py文件
	@Author: Notus(hehe_xiao@qq.com)
	@Create: 2019-02-10
	@Update: 2019-02-10
\'\'\'

import os
import os.path

# UI 文件所在的路径
dir = \'./\'

# 列出目录下的所有 UI 文件
def listUiFile():
	list = []
	files = os.listdir(dir)
	for filename in files:
		#print(dir + os.sep + f)
		#print(filename)
		if os.path.splitext(filename)[1] == \'.ui\':
			list.append(filename)
	
	return list

# 把扩展名为.ui的成扩展名为.py的文件
def transPyFile(filename):
	return os.path.splitext(filename)[0] + \'.py\'

# 调用系统命令把 UI 文件改成扩展名为 Python 文件
def runMain():
	list = listUiFile()
	for uifile in list:
		pyfile = transPyFile(uifile)
		cmd = \'pyuic5 -o {pyfile} {uifile}\'.format(pyfile=pyfile, uifile=uifile)
		#print(cmd)
		os.system(cmd)

# 程序的入口
if __name__ == \'__main__\':
	runMain()

窗体截图如下

原.ui文件内容如下

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>MainWindow</class>
 <widget class="QMainWindow" name="MainWindow">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>800</width>
    <height>600</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>MainWindow</string>
  </property>
  <widget class="QWidget" name="centralwidget">
   <widget class="QPushButton" name="pushButton">
    <property name="geometry">
     <rect>
      <x>330</x>
      <y>200</y>
      <width>91</width>
      <height>51</height>
     </rect>
    </property>
    <property name="text">
     <string>PushButton</string>
    </property>
   </widget>
  </widget>
  <widget class="QMenuBar" name="menubar">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
     <width>800</width>
     <height>23</height>
    </rect>
   </property>
  </widget>
  <widget class="QStatusBar" name="statusbar"/>
 </widget>
 <resources/>
 <connections/>
</ui>

转换后的 .py 文件如下

# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file \'a.ui\'
#
# Created by: PyQt5 UI code generator 5.11.3
#
# WARNING! All changes made in this file will be lost!

from PyQt5 import QtCore, QtGui, QtWidgets

class Ui_MainWindow(object):
    def setupUi(self, MainWindow):
        MainWindow.setObjectName("MainWindow")
        MainWindow.resize(800, 600)
        self.centralwidget = QtWidgets.QWidget(MainWindow)
        self.centralwidget.setObjectName("centralwidget")
        self.pushButton = QtWidgets.QPushButton(self.centralwidget)
        self.pushButton.setGeometry(QtCore.QRect(330, 200, 91, 51))
        self.pushButton.setObjectName("pushButton")
        MainWindow.setCentralWidget(self.centralwidget)
        self.menubar = QtWidgets.QMenuBar(MainWindow)
        self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 23))
        self.menubar.setObjectName("menubar")
        MainWindow.setMenuBar(self.menubar)
        self.statusbar = QtWidgets.QStatusBar(MainWindow)
        self.statusbar.setObjectName("statusbar")
        MainWindow.setStatusBar(self.statusbar)

        self.retranslateUi(MainWindow)
        QtCore.QMetaObject.connectSlotsByName(MainWindow)

    def retranslateUi(self, MainWindow):
        _translate = QtCore.QCoreApplication.translate
        MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
        self.pushButton.setText(_translate("MainWindow", "PushButton"))

以上是关于3. PyQt5-通过Python脚本把当前目录下的所有.ui文件转换为.py文件的主要内容,如果未能解决你的问题,请参考以下文章

写一个脚本,把当前目录下除目录以外的所有普通文件

在不终止启动 Python 脚本的情况下关闭 pyqt5 GUI

python 3.5 (十五)内置模块

如何在win7 cmd下使用2to3.py 转换python2脚本到3

linux下通过脚本切换当前工作目录

PyQt5 技巧篇-解决相对路径无法加载图片问题,styleSheet通过"相对"路径加载图片,python获取当前运行文件的绝对路径。