In your packaging “howto” (…tutorials/packaging-pyqt5-apps-fbs/):
from fbs_runtime.application_context.PyQt5 import ApplicationContext
class AppContext(ApplicationContext):
def __init__(self, *args, **kwargs): super(AppContent, self).__init__(*args, **kwargs) self.window = Window() def run(self): self.window.show() return self.app.exec_()
is this a typo? Shouldn’t it be:
def __init__(self, *args, **kwargs): super(AppContext, self).__init__(*args, **kwargs)
If not… sorry, couldn’t find the AppContent.
But my main-question would be this:
…well, of course i stumbled upon fbs because i was having trouble with pure pyinstaller and setting up a proper .spec-file.
I built my layout with Qt-Designer, so i got a .qrc file that i converted with
pyrcc5 to a *_rc.py-file.
Where do i have to put this?
How can i import/call it?
…or isn’t this possible at all?
Thanks for your time!
Have a great one…
And enjoy baby-time!
(…they won’t be that sweet, when they go through puberty… like mine. )