Skip to content

A simple code to convert a file from Qt to Python code or build it into an application

Notifications You must be signed in to change notification settings

Machi-Za/pyqt-python-qt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

pyqt-python-qt

A simple code to convert a file from Qt to Python code or build it into an application

Convert .ui file to .py file use :

pyuic5 -x Filename.ui -o Filename.py

Convert from .qrc file to .py file use :

pyrcc5 Filename.qrc -o Filename.py 

Convert from .qrc file to .exe file use :

pyinstaller --onefile --noconsole Filename.py

Warning: If an error notification appears during the conversion, such as: 'pyinstaller' is not recognized as an internal or external command, operable program or batch file.

please install PyInstaller first.

pip install pyinstaller

About

A simple code to convert a file from Qt to Python code or build it into an application

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published