Bro, you're awesome, i literally lost half of the day to discover why i don't could upgrade to pyside6, but with your video, i finnaly discover, thanks very mutch
@jiejenn3 жыл бұрын
Glad the video helped.
@skewbinge61573 жыл бұрын
thanks that was useful very short yet informative
@jiejenn3 жыл бұрын
Glad the video helped.
@100amps Жыл бұрын
Good video. Thank you Jie.
@deiaabdullah20082 жыл бұрын
Great work, thaks Jie .. keep it up
@johntan41472 жыл бұрын
I cant understand where did you get the files from the folder in 00:48
@jiejenn2 жыл бұрын
Those are just blank Python files, in which you can create your own.
@nermienkhalifa59973 жыл бұрын
Thanks for the great video. By the way, when I ran the script I couldn't see my application, just a new empty window appeared, I solved this by replacing "class myApp(QWidget)" with "class myApp(QMainWindow)". I am still a beginner, but I am mentioning this because it took me a long time to find the solution.
@deiaabdullah20082 жыл бұрын
Thanks Nermien... your comment solved my issue ... I spent 2 hours trying to figure the issue I also repeated the Video and found that Jie has used the widget (see video at 4:29) as the main window while you and me used the mainwindow. so the solution was we eirther do what you did and change the class in the code to QMainWindow or revise the ui file and change the type the MainWindow to Widget
@aamano743911 ай бұрын
Dude thanks for this, I also spent an hour figuring out why it didn't run. Thanks!!
@RetoonHD3 жыл бұрын
Good video, good articulation, good info, and even an informative description, i honestly can't ask for more. keep it up
@charleskhenry2 жыл бұрын
Short and to the point, how I like it!
@alwaysgood39133 жыл бұрын
Thanks, earned a sub! Will follow to learn more. Thank you!
@Atonix998 ай бұрын
how do we know where to install it and how? You just started the video with a folder there
@MichalMonday2 жыл бұрын
Hi, how do you get pyqt methods suggestions in the editor? Is this some sort of plugin?
@jiejenn2 жыл бұрын
Depending on the widgets you use, they are already built-in.
@MichalMonday2 жыл бұрын
@@jiejenn I meant method names as you type in Sublime text program, suggestions popup allowing you to know what methods are available without the need to check documentation.
@jiejenn2 жыл бұрын
@@MichalMonday ohhhhh. I think you're referring to tabnine plugin.
@MichalMonday2 жыл бұрын
@@jiejenn Thank you :)
@AhmedIyd-q7t11 ай бұрын
Hello dear, You used PyQt5-tools instead of PyQt6-tools. Is there difference?
@jiejenn11 ай бұрын
You can use pyqt-tool for PyQt6 since the output is just an XML file.
@greenergrass34892 жыл бұрын
is it possible to make it responsive to all mobile sizes?
@jiejenn2 жыл бұрын
Not that I know of.
@emadleiman472 жыл бұрын
Nice tutorial but I tried it using PySide6 and there wasn't any uic module, but I found QtUiTools. When I ran the script, it loaded an empty window. I also added the file path for ui file and still it displayed an empty window so I'm assuming the coding needs to be different for PySide6. If anyone got this working in PySide6, please let me know what the coding needs to look like.
@frozenyetimug2 жыл бұрын
Got this to work with pyside6 and QtUiTools. In the MyApp class def, I grabbed QtUiTools from PySide6 and put the following immediately below super().__init() self= QtUiTools.QUiLoader().load("Filename.ui", self) Additionally, and this was the key, I had to save the .ui file one directory higher than my python script. No idea why. I recommend copying the .ui and saving it in a few levels of folders above and below your python script and figure out which one it actually reads. Good luck!
@joeking5211 Жыл бұрын
it's pyside6-uic.exe and it is found in the Scripts folder, hope that helps
@Mvanec2 жыл бұрын
You've left out the incredibly important step of how you magically autofilled the python code in your text editor. How did that happen?
@jiejenn2 жыл бұрын
Intellisense has nothing to do with PyQt. I would recommend you start with Python 101 first.
@Mvanec2 жыл бұрын
I came here for the QT Designer information. The autofill is relevant, and apparently useful and quite time-saving. It wouldn't hurt you to spend a few seconds explaining how you made that happen. This video seems to be about the tools, not the language.