Keep up the good work! I love the GUI videos you got going 👌🏼
@codewithjoshoffical4 ай бұрын
Thanks! Glad you like them 😁
@CapDavyJons4 ай бұрын
The best notification I got this morning. Thank you Josh ❤
@codewithjoshoffical4 ай бұрын
Thank you! I have a lot of fun with PyQt, if there’s any GUI ideas you have let me know 😁
@wombaat2114 ай бұрын
Awesome vid, looking forward to more GUI videos
@codewithjoshoffical4 ай бұрын
Thanks! Any ideas you have I’m all ears 😄
@codewithjoshoffical4 ай бұрын
👉 Join my weekly Python newsletter, free ~ thenerdnook.substack.com
@magnus4252 ай бұрын
Is it possible to make an app that renders markdown and latex in $$latexcode$$ with live preview as you write the markdown code?
@dorzamir48886 күн бұрын
Hey i follow your video amazing explaintion i am very new in python so i dont have any idea why you use "connect" becouse my pycharm see it like an isue so idont know what it does and the perpass of the commend i will be happy to get an a baginner explantion for that thanks :)
@codewithjoshoffical4 күн бұрын
Hey, thanks! I’m glad you’re getting value 😁 That’s odd that pycharm isnt picking it up. Connect is a PyQt method which is usually linked to an event. (Clicked, isSelected, etc.) This allows up to connect a function an an event in our apps. Button.clicked.connect(my_function) Which translates to “When my button, Button is clicked. I want to connect and call my_function) Hope that helps!
@dorzamir48884 күн бұрын
@codewithjoshoffical thank you very much this helped me a lot The explanation is excellent🙏🙏
@rahulkmail4 ай бұрын
Great ❤
@codewithjoshoffical4 ай бұрын
Thank you! 😁
@HharshalL4 ай бұрын
now make it a music player
@codewithjoshoffical4 ай бұрын
Haha, had to fix my first problem first! But yes, this could be the next stage of it 😁
@sontl4 ай бұрын
Are you studying Vietnamese? Tuyệt vời ông mặt trời
@codewithjoshoffical4 ай бұрын
I am yes 😁. That must be an idiom, I don’t get the context yet lol. Working on it though!
@sontl4 ай бұрын
@@codewithjoshoffical it means you are awesome :D
@amish1984 ай бұрын
Will this work in android phone ?
@codewithjoshoffical4 ай бұрын
Unfortunately not. PyQt is designed as a desktop GUI and PyInstaller packages up the app as an executable. For a Python mobile app this app could be redone in Kivy. The syntax between PyQt is somewhat similar too Here’s a past video on Kivy if you’re interested Video - kzbin.info/www/bejne/l2q3Z2aIidGVorssi=dJ8OC_mR1AEyExpb
@amish1984 ай бұрын
Thanks brother for answering me but python kivy is as good as react native for building mobile applications in android?
@codewithjoshoffical4 ай бұрын
@@amish198 No Kivy is not as good. Kivy is great cause you can get an MVP spun up really quick. Ultimately React Native is the way to go over Kivy, but you could use flet which has gotten really good and pairs with Python