Create a Python Audio App with PyQt - Fast & Easy GUI Development

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ม.ค. 2025

ความคิดเห็น • 23

  • @TheAdventureOfLife
    @TheAdventureOfLife 4 หลายเดือนก่อน +2

    Keep up the good work! I love the GUI videos you got going 👌🏼

  • @CapDavyJons
    @CapDavyJons 4 หลายเดือนก่อน +1

    The best notification I got this morning. Thank you Josh ❤

    • @codewithjoshoffical
      @codewithjoshoffical  4 หลายเดือนก่อน +1

      Thank you! I have a lot of fun with PyQt, if there’s any GUI ideas you have let me know 😁

  • @wombaat211
    @wombaat211 4 หลายเดือนก่อน +1

    Awesome vid, looking forward to more GUI videos

    • @codewithjoshoffical
      @codewithjoshoffical  4 หลายเดือนก่อน

      Thanks! Any ideas you have I’m all ears 😄

  • @codewithjoshoffical
    @codewithjoshoffical  4 หลายเดือนก่อน

    👉 Join my weekly Python newsletter, free ~ thenerdnook.substack.com

  • @rahulkmail
    @rahulkmail 4 หลายเดือนก่อน +1

    Great ❤

  • @dorzamir4888
    @dorzamir4888 11 วันที่ผ่านมา +1

    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 :)

    • @codewithjoshoffical
      @codewithjoshoffical  10 วันที่ผ่านมา +1

      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!

    • @dorzamir4888
      @dorzamir4888 9 วันที่ผ่านมา

      @codewithjoshoffical thank you very much this helped me a lot
      The explanation is excellent🙏🙏

  • @magnus425
    @magnus425 2 หลายเดือนก่อน

    Is it possible to make an app that renders markdown and latex in $$latexcode$$ with live preview as you write the markdown code?

  • @sontl
    @sontl 4 หลายเดือนก่อน +1

    Are you studying Vietnamese? Tuyệt vời ông mặt trời

    • @codewithjoshoffical
      @codewithjoshoffical  4 หลายเดือนก่อน +1

      I am yes 😁. That must be an idiom, I don’t get the context yet lol. Working on it though!

    • @sontl
      @sontl 4 หลายเดือนก่อน +1

      @@codewithjoshoffical it means you are awesome :D

  • @HharshalL
    @HharshalL 4 หลายเดือนก่อน +1

    now make it a music player

    • @codewithjoshoffical
      @codewithjoshoffical  4 หลายเดือนก่อน

      Haha, had to fix my first problem first! But yes, this could be the next stage of it 😁

  • @amish198
    @amish198 4 หลายเดือนก่อน +1

    Will this work in android phone ?

    • @codewithjoshoffical
      @codewithjoshoffical  4 หลายเดือนก่อน +1

      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 - th-cam.com/video/a9T63RTlblY/w-d-xo.htmlsi=dJ8OC_mR1AEyExpb

    • @amish198
      @amish198 4 หลายเดือนก่อน +1

      Thanks brother for answering me but python kivy is as good as react native for building mobile applications in android?

    • @codewithjoshoffical
      @codewithjoshoffical  4 หลายเดือนก่อน

      @@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