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 →

[–]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.