Python Forum
What is your preferred resource for learning PyQt? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: What is your preferred resource for learning PyQt? (/thread-37774.html)



What is your preferred resource for learning PyQt? - panofish - Jul-20-2022

There aren't many great resources for learning PyQt. Where do you go to learn about PyQt?


RE: What is your preferred resource for learning PyQt? - menator01 - Jul-20-2022

I usually just do a duckduckgo search.
This forum has some pretty good threads on pyqt


RE: What is your preferred resource for learning PyQt? - Larz60+ - Jul-20-2022

This is a huge subject, but for starters:

There's
PySide6: https://doc.qt.io/qtforpython/PySide6/QtWidgets/index.html
PyQt6: https://www.riverbankcomputing.com/software/pyqt/
shiboken6: https://doc.qt.io/qtforpython/shiboken6/index.html

for basics:

see: https://www.qt.io/blog/qt-for-python-6-released for available packages,
then google 'QT6 python tutorials' many videos and tutorials

for PyQt6 see: https://zetcode.com/pyqt6/
for QT Designer (python) there's: https://realpython.com/qt-designer-python/

later you can fine tune for the specific packages you need for your project.

for an idea of what's available for python widgets, see: https://doc.qt.io/qtforpython/overviews/gallery.html


RE: What is your preferred resource for learning PyQt? - mfitzp - Aug-08-2022

I have a website dedicated to PyQt (& PySide) development at pythonguis.com with tutorials starting from basic stuff, getting going up to more advanced topics (model views, threading, graphics scene, custom widgets/graphics, qml & packaging... and so on).

See the PyQt5 tutorial or PyQt6 tutorial for starters.
If you need something not covered let me know, I update it regularly.


RE: What is your preferred resource for learning PyQt? - Larz60+ - Aug-16-2022

mfitzp -- FYI you are using same link for both QT5 and QT6 tutorial


RE: What is your preferred resource for learning PyQt? - mfitzp - Aug-16-2022

Thanks @Larz60 !