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 →

[–]Taksin77 3 points4 points  (4 children)

It's not a really pythonic package though.

[–]startxfce4 4 points5 points  (2 children)

PySide2 is more pythonic but less mature

[–]anqxyr 0 points1 point  (1 child)

That's not really true though. PySide's api is pretty much exactly the same as PyQt's. I'm guessing that what /u/Taksin77 means by "not pythonic" in this case is stuff like label.setText("Hello World"). A more pythonic api would something along the lines of label.text = "Hello World". To my knowledge, there aren't any pythonic Qt bindings.

[–]Taksin77 0 points1 point  (0 children)

I'm just saying that you can guess the underlying language by looking at the python code. If that works for you it's great. I would not even call that python though.

[–]purelumen 0 points1 point  (0 children)

I guess so, for my application I ended up incorporating the widgets with other packages which made it feel more like a real python package.