Hi,
I am building a python desktop program using qt widgets .ui files and transforming them to python files with the pyuic command. So far it's working perfectly without creating a Qt project, for more than 30 different windows, but I found that I cannot use resource files unless I create a qt creator project. I don't want to create a project because it creates C++ files and useless stuff for my python application. I even tried to create a C++ project, delete those files and try to add .py files or .ui to the newly created project with no success at all. Bear with me that I'm still a noob and I've been learning Qt for only 2 months now.

Isn't any way to import a .qrc file from a .ui file without creating a project, so I can use it on the Rich Text of the html property of a QTextEdit?