How exactly would I go about doing this? Any advice would help
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use a
QtGui.QCoreApplication()Its intended for console applications that will not need to use QWidgets. Just create it like you would a normal app, create the rest of your app as normal using QObjects, signals and slots. Start an event loop as normal.
Nothing really changes when you write a console based app aside from the fact that you can’t use QWidgets.