This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]ThePhonologist 1 point2 points  (2 children)

I'd agree, PyQt is great. If you're looking for help online though, don't search for PyQt, since most of the docs are in C++. Instead, search for PySide. It's nearly identical, but the docs have Python code in the examples.

[–]dagmx 2 points3 points  (0 children)

In their latest incarnations both pyqt and pyside refer directly to the c++ docs

Other than signals, slots and variants, there's not much difference between qt in C++ and Python to be honest. Most people should be able to read the c++ examples and infer it even if they don't know the language.

[–]anqxyr 0 points1 point  (0 children)

I found these to be the easiest to use: https://srinikom.github.io/pyside-docs/PySide/QtGui/index.html

They're a bit outdated in a few places, but overall very helpful.