Posts: 16
Threads: 6
Joined: May 2020
Dec-23-2020, 04:09 AM
(This post was last modified: Dec-23-2020, 04:09 AM by oradba4u.)
All:
Does anyone know of a website that supports The Python GUI Development Environment called "Page"?
Also, What is the GUI Designer of choice for Professional Python Developers?
Posts: 8,160
Threads: 160
Joined: Sep 2016
(Dec-23-2020, 04:09 AM)oradba4u Wrote: Does anyone know of a website that supports The Python GUI Development Environment called "Page"? http://page.sourceforge.net/#Documentation
(Dec-23-2020, 04:09 AM)oradba4u Wrote: What is the GUI Designer of choice for Professional Python Developers One would select a GUI framework, not GUI designer. There may be designer avaiable or not. Also many don't use designer for various reasons - e.g. they think designer generates too much redundant code or that it's quicker to write themselves.
Posts: 16
Threads: 6
Joined: May 2020
Dec-23-2020, 05:21 AM
(This post was last modified: Dec-23-2020, 05:25 AM by oradba4u.)
The documentation there is pretty sparse, and not too detailed... For example, I created 4 radio buttons per their example, and when I click one, ALL of them get selected.
Posts: 1,838
Threads: 2
Joined: Apr 2017
Do you need to write a traditional desktop app? Another option is of course to write a web app.
Posts: 8,160
Threads: 160
Joined: Sep 2016
Dec-23-2020, 08:16 AM
(This post was last modified: Dec-23-2020, 08:16 AM by buran.)
I never used it, but the docs look quite extensive - http://page.sourceforge.net/html/index.html
If radiobuttons don't work as expected it's hard to tell what the reason is. I see 2 possibilities - (i) you did something wrong (e.g. you didn't change the default value of some attribute of the widget in the designer Attribute editor) or (ii) by default the code being generated needs to be altered manually afterwards.
Posts: 16
Threads: 6
Joined: May 2020
Dec-23-2020, 05:34 PM
(This post was last modified: Dec-23-2020, 05:54 PM by oradba4u.)
OK, many thanks... but, what about the other half of my question...
What is the (best?) GUI development environment of choice for Python by you programmers out there, and why did you choose it? I don't want to go down a dead-end road by picking the wrong GUI development environment... I'm looking for something well documented (including books, tutorials, examples, etc.), well supported (with user forums, articles, etc.), works with the latest versions of python (3.8,3.9), and doesn't cost half a Covid-19 relief check (if we ever get another one :)
Posts: 1,032
Threads: 16
Joined: Dec 2016
(Dec-23-2020, 05:34 PM)oradba4u Wrote: OK, many thanks... but, what about the other half of my question...
What is the (best?) GUI development environment of choice for Python by you programmers out there,...
I don't use any. You learn more without it.
(Dec-23-2020, 05:34 PM)oradba4u Wrote: I'm looking for something well documented (including books, tutorials, examples, etc.), well supported (with user forums, articles, etc.), works with the latest versions of python (3.8,3.9), and doesn't cost half a Covid-19 relief check (if we ever get another one :)
only a small selection, search here in the forum and you will find more
https://thispointer.com/python-programming/
https://pynative.com/
http://zetcode.com/tkinter/
http://zetcode.com/wxpython/
https://python-gtk-3-tutorial.readthedoc...index.html
https://www.learnpyqt.com/
|