запустить pyuic5 с подпроцессом. Открыть - PullRequest
0 голосов
/ 12 сентября 2018

Я пытаюсь вызвать pyuic5 с помощью subprocess.Popen для преобразования файлов qt5 .ui в python из скрипта python в Windows.

command = "pyuic5 -x " + filein + " -o " + fileout
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=None, shell=False, cwd=folderPath)
output = process.communicate()

Дает мне следующую ошибку:

Traceback (most recent call last):
  File "N:\My Documents\Code\Python Projects\Work projects\PyQtConverter\src\fonctions.py", line 36, in convert_qt_2_py
    process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=None, shell=False, cwd=folderPath)
  File "C:\Python35\lib\subprocess.py", line 709, in __init__
    restore_signals, start_new_session)
  File "C:\Python35\lib\subprocess.py", line 997, in _execute_child
    startupinfo)
FileNotFoundError: [WinError 2] Le fichier spécifié est introuvable

Кажется, проблема заключается в вызове pyuic5 (хотя он распознается как допустимая команда с windows cmd?).Установка shell=True решает проблему, но я читал, что эта опция может быть угрозой безопасности и не рекомендуется.Должен ли я делать вещи по-другому?

1 Ответ

0 голосов
/ 12 мая 2019

Возьми это. Отлично работает на win 10;)

Нужно изменить имя gui.ui (variableName: guiNameUi) и ваш outputfile.py (variableName: guiNameUi)

Например: от guiNameUi = r'Button.ui 'до guiNameUi = r'yourGuiName.ui' guiNamePy = r'Button.py 'to guiNameUi = r'yourGuiName.py'

По крайней мере, один должен изменить свой путь на pyuic5, как этот: преобразователь = r'C: \ Users \ YourPC \ Anaconda3 \ Library \ bin '

После конвертации Python файл графического интерфейса открывается в стандартном приложении


"""
Created on Fri May 10 16:59:26 2019

@author: BlindSide
"""
"""
--version             show program's version number and exit
  -h, --help            show this help message and exit
  -p, --preview         show a preview of the UI instead of generating code
  -o FILE, --output=FILE
                        write generated code to FILE instead of stdout
  -x, --execute         generate extra code to test and display the class
  -d, --debug           show debug output
  -i N, --indent=N      set indent width to N spaces, tab if N is 0 [default:
                        4]
  -w, --pyqt3-wrapper   generate a PyQt v3 style wrapper

  Code generation options:
    --from-imports      generate imports relative to '.'
    --resource-suffix=SUFFIX
                        append SUFFIX to the basename of resource files
                        [default: _rc]
"""

#Used in converting Script
import os
import subprocess

# python file ConvertUiToPy.py and example.ui lies in same folder
# directory of file
currentWorkingDir = os.getcwd()

#name of GUI.ui
guiNameUi = r'Button.ui'

#name of GUI.py
guiNamePy = r'Button.py'

# concat WorkingDir und GUI
fullpathUi = os.path.join(currentWorkingDir, guiNameUi)
fullpathPy = os.path.join(currentWorkingDir, guiNamePy)

# directory of pyuic5.bat -> eg. Anaconda 3 replace XYZ with userAccount
converter = r'C:\Users\YourPC\Anaconda3\Library\bin'

try:
    # change directory from  to pyuic5
    os.chdir(converter)
    print("directory changed... \n...executing conversion")  
    #execute pyuic5 to convert files
    p1 = subprocess.call("pyuic5 -x \"" + fullpathUi + "\" -o \"" + fullpathPy + "\"", shell=True)
    #file exists?
    if(os.path.isfile(fullpathPy)):
        print("...open new gui.py")
        #open file in standard app
        os.startfile("\"" + fullpathPy + "\"")
    else:
        #file doesnt exists? throw exception!!!
        raise

# handling exeception
except:
    print("something went wrong")

# further work in workingDirectory
finally:
    print("restore old path")
    os.chdir(currentWorkingDir)
    print("changed to:", os.getcwd())
...