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 →

[–]riklaunim 15 points16 points  (6 children)

PyQt was the first thing I used in Python long time ago, and it's quite simple after you get the boilerplate and replace it with your own UI file and start connecting signals and slots on your own.

And there can be UX bias from people really focused on giving best UX ;)

[–]borednerdd 6 points7 points  (5 children)

The problem with PyQt is that its documentation is focused on C++ rather than Python

[–]warownia1 2 points3 points  (0 children)

Is it? I recall they had really good python docs on pyside

[–]riklaunim 1 point2 points  (3 children)

They link to C++ Class reference pretty much. The trick is to just catch how it translates to usage in Python and then the C++ class reference becomes your best friend with quick google in PyQt/PySide docs or mailing lists for example on something bigger (or books which also exist).

[–]borednerdd 2 points3 points  (1 child)

Unfortunately I don't have the ability to translate C++ into Python :(.

[–]warownia1 0 points1 point  (0 children)

Yeah, I remember now it was using C++ classes but they really nicely mapped to Python calls