Python Forum

Full Version: What is your preferred resource for learning PyQt?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
There aren't many great resources for learning PyQt. Where do you go to learn about PyQt?
I usually just do a duckduckgo search.
This forum has some pretty good threads on pyqt
This is a huge subject, but for starters:

There's
PySide6: https://doc.qt.io/qtforpython/PySide6/Qt...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
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.
mfitzp -- FYI you are using same link for both QT5 and QT6 tutorial
Thanks @Larz60 !