Is there a way to convert a ui formed with qtDesigner to a python version to use without having an extra file?
I\'m using Maya for this UI, and converting this UI fi
The question has already been answered, but if you are looking for a shortcut during development, including this at the top of your python script will save you some time but mostly let you forget about actually having to make the conversion.
import os #Used in Testing Script
os.system("pyuic4 -o outputFile.py inpuiFile.ui")