▶️ Watch Entire PyQt5 GUI Thursdays Playlist ✅ Subscribe To My RUclips Channel: bit.ly/3sHT8dc bit.ly/2IGzvOR ▶️ See More At: ✅ Join My Facebook Group: Codemy.com bit.ly/2GFmOBz ▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt! Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN ▶️ Get The Code: bit.ly/394NQ3R
I was just looking at the documentation for PYQT5 when I came across your video tutorials! And I can confidently say you are one of the BEST instructors I've seen on YT for python and GUI's. Keep up the good work, and greetings from Canada!
I think it would be fair to put a remark, that it's not the best way to code anything more complex than such a dummy calculator, to let people know about patterns like MVC or MVVM which let decouple the GUI part (view) from the logic (model), so that if you want to remove a button or even implement simplified UI for the mobile device version, you don't need to reconstruct the logic down there (and vice versa). And also would be good to mention layouts rather than manually aligning pixels (imagine you decide to resize the main window by 10% just after you've precisely set positions to all the buttons). It's nice intro to how QT designer works, but otherwise this is the way GUI apps were written 20+ years ago ;)
on the if "0" shouldnt that be in the if statement to prevent unneccesary nesting? as if "0" the output label == pressed? So im curious if you're doing it because of visibility or not as its more or less same amount of code.
Hi, many thanks for the excellent hands-on tutorial! Btw is there a code snippet of keeping the QPT5 Window always infocus or bring it back infocus automatically in the Windows OS? [I'm making an app with PyQT5 and need this feature]
Traceback (most recent call last): File "C:\Users\sreem\OneDrive\Documents\PYQT\calc.py", line 12, in self.fourbutton = QtWidgets.QPushButton(self.centralwidget, clicked= lambda: self.press_it("4")) File "C:\Users\sreem\OneDrive\Documents\PYQT\calc.py", line 219, in press_it self.label.setText(f'{self.label.setText.text()}{pressed}') AttributeError: 'builtin_function_or_method' object has no attribute 'text' this came after 18:53
Hi I have a problem with QCalendarWidget I am creating a To-Do List with Persian Calendar(Jalali) but I can't change Change The Calendar to Jalali I Change the language and country but I can't figure out how to change the calendar itself!!
Great videos, question, how do you manage changes? if you later added a new feature to your calculator but also altered the .py file a lot already, is there a way to properly managed this changes?
Hello John, thanks for the tutorial videos, I have a problem here when I run my code the vs code gives me this error: " Ui_MainWindow.press_it() missing 1 required positional argument: 'pressed' "
@@Codemycom Yeah :), I should have passed each button names to the function so I solved it quickly. Sample Code for fiveButton: clicked = lambda : self.press_it(pressed ="5")
Why did you modify ANY code in the Calc.py file? Any subsequent changes in the .UI file in designer will blow away all your code changes? I "thought" the process was to create your form in designer. Use the .UI file to create the .py file of class data. Then import that into say your "main.py" file where you then create a class and then all your "custom" code goes into your main? Or... Is there a way using the Designer, to use its "Signal/Slot Editor" or "Action Editor" to establish your button click code so if you come back into he designer later to update the form say to add a forgotten button, you can then regen the .py file from the .ui file without losing all anything?
I really love the content of your video presentations. However, when I look at the designer tool on this video, it appears a bit out of focus. I'm viewing on a Mac with excellent retina display resolution.
Click the gear in the bottom corner of the video, change the Quality resolution to the highest available (HD). Your resolution likely got knocked out of wack somehow.
@@Codemycom Today even worse! Got some light precipitation this morning here on the west side. Any chance you could increase the frequency of the PyQt5 GUI videos to more often than just Thursdays?
Just for a joke : I was doing a coding project When I got an error. My guardian angel came and told me you have done something wrong please check line number 5 . Please check and correct it. I thanked my angel. And my angel warned me don't repeat it.
▶️ Watch Entire PyQt5 GUI Thursdays Playlist ✅ Subscribe To My RUclips Channel:
bit.ly/3sHT8dc bit.ly/2IGzvOR
▶️ See More At: ✅ Join My Facebook Group:
Codemy.com bit.ly/2GFmOBz
▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt!
Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN
▶️ Get The Code:
bit.ly/394NQ3R
I was just looking at the documentation for PYQT5 when I came across your video tutorials! And I can confidently say you are one of the BEST instructors I've seen on YT for python and GUI's. Keep up the good work, and greetings from Canada!
Wow thanks, I appreciate that!
Your code is clear and very easy to understand
Thanks!
Thank god you are making videos about PyQT5 I was using just right now! Your videos are awesome thx!
Glad you like them!
I think it would be fair to put a remark, that it's not the best way to code anything more complex than such a dummy calculator, to let people know about patterns like MVC or MVVM which let decouple the GUI part (view) from the logic (model), so that if you want to remove a button or even implement simplified UI for the mobile device version, you don't need to reconstruct the logic down there (and vice versa). And also would be good to mention layouts rather than manually aligning pixels (imagine you decide to resize the main window by 10% just after you've precisely set positions to all the buttons). It's nice intro to how QT designer works, but otherwise this is the way GUI apps were written 20+ years ago ;)
How can I learn about MVC and MVVM?
very nice and simple explanation
THANKS TEACHER :D
Welcome!
thank you so much! you've helped me with my college homework:D
Happy to hear it!
Great tutorial! Thanks John.
Very Welcome
Great series! Keep up the good work and greetings from Montreal!
Thanks!
on the if "0" shouldnt that be in the if statement to prevent unneccesary nesting? as if "0" the output label == pressed?
So im curious if you're doing it because of visibility or not as its more or less same amount of code.
Thank you for this tutorial. I am now using the designer to build better GUIs. Tkinter was a bit frustrating for me.
Glad it helped!
Just one comment is that you could double click the text to edit it on the pushButton. Thanks for the amazing tutorial videos.
Great Sir. Thank you
Welcome!
Hi, many thanks for the excellent hands-on tutorial! Btw is there a code snippet of keeping the QPT5 Window always infocus or bring it back infocus automatically in the Windows OS? [I'm making an app with PyQT5 and need this feature]
thank you very much!
Glad to hear it!
Thx for the video!
Videos are so early nowadays...👏👏
yep
Traceback (most recent call last):
File "C:\Users\sreem\OneDrive\Documents\PYQT\calc.py", line 12, in
self.fourbutton = QtWidgets.QPushButton(self.centralwidget, clicked= lambda: self.press_it("4"))
File "C:\Users\sreem\OneDrive\Documents\PYQT\calc.py", line 219, in press_it
self.label.setText(f'{self.label.setText.text()}{pressed}')
AttributeError: 'builtin_function_or_method' object has no attribute 'text'
this came after 18:53
Thank you so muchhhhh
Welcome
Hi
I have a problem with QCalendarWidget
I am creating a To-Do List with Persian Calendar(Jalali)
but I can't change Change The Calendar to Jalali
I Change the language and country but I can't figure out how to change the calendar itself!!
Great videos, question, how do you manage changes? if you later added a new feature to your calculator but also altered the .py file a lot already, is there a way to properly managed this changes?
Yeah I'll need to do a video on this one of these days
Thanks Sir :)
Most welcome
I have a question about kivymd
please ans
Question : In kivymd textfield how can i check if left-icon clicked
This isn't a Kivy video
@@Codemycom But can't i ask the question 😰😰
@@MEHEDIHASAN-kx6ok Not under a PyQT video
@@Codemycom huh i have asked in kivy video
Hello John, thanks for the tutorial videos, I have a problem here when I run my code the vs code gives me this error: " Ui_MainWindow.press_it() missing 1 required positional argument: 'pressed' "
You forgot to pass an argument to the function in the button code. 13:09
@@Codemycom Yeah :), I should have passed each button names to the function so I solved it quickly.
Sample Code for fiveButton:
clicked = lambda : self.press_it(pressed ="5")
hello sir, what is the command for mac to convert a .ui file to .py file
the windows command doesn't work here
It works nicely!
Can you make a video how to print documents/pdfs with PyQt's QPrinter? Would be very cool and very useful. Thanks a lot before!
Might look into that :-)
Why did you modify ANY code in the Calc.py file? Any subsequent changes in the .UI file in designer will blow away all your code changes? I "thought" the process was to create your form in designer. Use the .UI file to create the .py file of class data. Then import that into say your "main.py" file where you then create a class and then all your "custom" code goes into your main?
Or... Is there a way using the Designer, to use its "Signal/Slot Editor" or "Action Editor" to establish your button click code so if you come back into he designer later to update the form say to add a forgotten button, you can then regen the .py file from the .ui file without losing all anything?
Because this is an ongoing series that teaches new things.... lol chill out and keep watching...
why when I change the ui file to py and I open it in vscode it open with html code no python
no clue, I wouldn't use vscode.
can we do it with normal pyqt5(with no pyqt designer)
Sure, if you want. But I wouldn't.
Need help when i run my python file it just opens and closes immediately any fix
What did you do differently from the video?
energetic as always
very good and thank you
I tried so hard to make a percentage
But I finally figured it out : -- )
:-)
I really love the content of your video presentations. However, when I look at the designer tool on this video, it appears a bit out of focus. I'm viewing on a Mac with excellent retina display resolution.
Click the gear in the bottom corner of the video, change the Quality resolution to the highest available (HD). Your resolution likely got knocked out of wack somehow.
@@Codemycom Thank you! Worked like a charm! Cold day here in Vegas! Good day for coding!
@@briangreenberg153 I hear that! What happened to those 70 degree days we had just a few days ago?!
@@Codemycom Today even worse! Got some light precipitation this morning here on the west side. Any chance you could increase the frequency of the PyQt5 GUI videos to more often than just Thursdays?
@@briangreenberg153 Yeah it rained here off and on all day near Lone Mountain. No sorry, my current production schedule is pretty set..
Can't we have Designer for tkinter
:-p
@@Codemycom I don't understand what you replied
@@codeKeshav the answer is no
@@Codemycom ok sir
Just for a joke :
I was doing a coding project
When I got an error.
My guardian angel came and told me you have done something wrong please check line number 5 . Please check and correct it. I thanked my angel. And my angel warned me don't repeat it.
one comment for yt algorithm
Thanks!
RUclips1
ha yep