I was wondering if there might be something similar to loadUiType
for the resource file.
Of course one can use pyrcc5 example.qrc -o example_rc.py
but than I have to do this step every time something is changed.
Using:
from PyQt5.uic import loadUiType
Ui_MainWindow, QMainwindo = loadUiType('~/example.ui')
renders the usage of the pyuic5-step unnecessary, which eases the application building process a bit.
How would one do that with the resource file?
cheers, Christian