4 Python GUI Projects with PyQt5 for COMPLETE beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ต.ค. 2024

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

  • @kuahara
    @kuahara 2 ปีที่แล้ว +4

    This is quite a generous amount of time to devote toward this contribution. I really enjoyed it. Thanks.

  • @akshayvashisht060819
    @akshayvashisht060819 3 หลายเดือนก่อน

    Hi Qt has made offline installer obsolete and I am facing an error “forbidden” while using the online installer. Is there any solution to this?

  • @munawarkhurshid1201
    @munawarkhurshid1201 ปีที่แล้ว +1

    Excellent video. It would be great if you can post a video regarding how to connect to a rest api (OAuth2 OIDC Connect) in python

  • @JorgeEscobarMX
    @JorgeEscobarMX ปีที่แล้ว +2

    3:00 Tkinter doesn't have a table widget, I love how this is not an issue anymore with QTableWidget.

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

      I haven't used Tkinter, but without Table object? Wow... it should have been hard to implement a table.

  • @JorgeEscobarMX
    @JorgeEscobarMX ปีที่แล้ว

    I tried to download Python Qt designer but the download speeds are lame! 40kbps~ it's been 2 hours already and it's at 9% I gave up. It's back to good old tkinter for me.

  • @JorgeEscobarMX
    @JorgeEscobarMX ปีที่แล้ว

    8:10 🙀Bro she's just dragging and dropping widgets. Tkinter's grid() and pack() methods makes me suffer in vain.

  • @Zak-l7e
    @Zak-l7e ปีที่แล้ว

    Thanks for this video, excellent as usual, for the table from excel one code could be simplified like this:
    self.tablewidget.setHorizontalHeaderLabels(raw_data[0])
    for row in range(1, len(raw_data)):
    for col in range(len(raw_data[0])):
    self.tablewidget.setItem(row - 1, col, QTableWidgetItem(str(raw_data[row][col])))
    of course the is raw_data is the list of the excel file values
    and also a small tweak to title display, instead of the whole file path showing as a title, you can only display the file name using the following tweak
    self.setWindowTitle(fileName[0].split("/")[-1])

  • @youcef3939
    @youcef3939 11 หลายเดือนก่อน

    Hello! Please help me how to correctly solve the administration problem, for example, use Python,QT, PostgreSQL. Please recommend an algorithm for organizing an access level for adesktop application where different interface components are included in different access classes, and when a new user is added, he will be included in one of these classes, and for him there will be Only components that are included in this access class are accessible. The question is, in order to implement this, what algorithm can be supported, or if there is documentation that can help resolve this issue. Thank you very much in advance!

  • @kushalmehta7523
    @kushalmehta7523 ปีที่แล้ว +1

    EXTREMELLYYYYY HELPFUL THANKYOUUUUUUUUUU ✨✨✨✨✨✨✨✨

  • @raphonbsp2962
    @raphonbsp2962 ปีที่แล้ว

    Hey! I hope you are well. I want to embed a Canvas (drawing pad) into a window. I made a pyqt5 version of paint but I can't seem to have it inside another window with other buttons. I have sent you and email (with more details of my failed trials) and a github issue. Can you help me with that please ? Thank you in advance.

  • @tacoma87x
    @tacoma87x ปีที่แล้ว

    I'm going to try and learn these while using pyqt6. I may be back in the comments for help. Thank you for your videos though. Not a ton of good recent pyqt stuff.

  • @iskandertrabelsi555
    @iskandertrabelsi555 2 ปีที่แล้ว +2

    Thank you, please more like this video

  • @JorgeEscobarMX
    @JorgeEscobarMX ปีที่แล้ว

    12:10 how to load the QT user interface into Python.

  • @greggcarlsen918
    @greggcarlsen918 ปีที่แล้ว

    Hi. I get a $ python main.py
    Traceback (most recent call last):
    File "C:\pygame_practice\main.py", line 4, in
    from qtconsole.qt import QtCore
    ModuleNotFoundError: No module named 'qtconsole.qt'
    error with python 3.11
    cant seen to figure it out any ideas

    • @greggcarlsen918
      @greggcarlsen918 ปีที่แล้ว +3

      I have a solution if someone else needs it.
      from qtpy import QtCore seems to work fine

  • @perlasaadeh3322
    @perlasaadeh3322 ปีที่แล้ว +1

    thank you for your time

  • @ChristyGale-l8c
    @ChristyGale-l8c 23 วันที่ผ่านมา

    Marjolaine Divide

  • @regiscostaatm2216
    @regiscostaatm2216 ปีที่แล้ว

    Great .. thanks

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

    Great tutorial! Thanks!

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

      I've watched it all and ran examples in my computer. You are SUPER!!!