As someone who works with Windows forms, I'm wondering where the visual designer to place widgets is.
PyQt5 Tutorial: Create a Python GUI in 2018
11–20 of 211 posts
Re: PyQt5 Tutorial: Create a Python GUI in 2018
#12Re: PyQt5 Tutorial: Create a Python GUI in 2018
#13I like the tutorial, but I don't know why you would use PyQt these days. Tkinter is more permissive and has wrappers like appJar which make it disgustingly easy to put together a quick, ugly GUI. If you're building a desktop app that needs to really look good and be fast, why are you using Python?
Re: PyQt5 Tutorial: Create a Python GUI in 2018
#14As someone who works with Windows forms, I'm wondering where the visual designer to place widgets is.
Re: PyQt5 Tutorial: Create a Python GUI in 2018
#15As someone who works with Windows forms, I'm wondering where the visual designer to place widgets is.
Re: PyQt5 Tutorial: Create a Python GUI in 2018
#16As someone who works with Windows forms, I'm wondering where the visual designer to place widgets is.
Re: PyQt5 Tutorial: Create a Python GUI in 2018
#17I like the tutorial, but I don't know why you would use PyQt these days. Tkinter is more permissive and has wrappers like appJar which make it disgustingly easy to put together a quick, ugly GUI. If you're building a desktop app that needs to really look good and be fast, why are you using Python?
PyQt uses compiled Qt C++ code so isn't really that slow, comparable to how NumPy does it's number crunching. Even if you do find it is slow, you can always come back and branch down to the C++ level when needed, although there are ton of steps you could take to optimize in Python first. There are also all the Qt tools from UI editor and Designer to QML and way more if you really wanna go down the rabbit hole...
What are you suggesting as a really good looking and fast cross platform alternative??
Re: PyQt5 Tutorial: Create a Python GUI in 2018
#18I like the tutorial, but I don't know why you would use PyQt these days. Tkinter is more permissive and has wrappers like appJar which make it disgustingly easy to put together a quick, ugly GUI. If you're building a desktop app that needs to really look good and be fast, why are you using Python?
1: https://stackoverflow.com/a/1094530/1839209
2: https://www.reddit.com/r/learnpython/comments/108zfq/tk_or_q...
3: https://www.quora.com/Should-I-use-PyQt-GTK3-or-tkinter-for-...
Re: PyQt5 Tutorial: Create a Python GUI in 2018
#19I like the tutorial, but I don't know why you would use PyQt these days. Tkinter is more permissive and has wrappers like appJar which make it disgustingly easy to put together a quick, ugly GUI. If you're building a desktop app that needs to really look good and be fast, why are you using Python?
What would you use for an app that needs to look really good and be fast?
Re: PyQt5 Tutorial: Create a Python GUI in 2018
#20I like the tutorial, but I don't know why you would use PyQt these days. Tkinter is more permissive and has wrappers like appJar which make it disgustingly easy to put together a quick, ugly GUI. If you're building a desktop app that needs to really look good and be fast, why are you using Python?