Re: Are there any easy-to-use Visual Studio C# WinForms-like GUI designers in the Python world for Tk?

2023-12-30 Thread Alan Gauld via Python-list
On 29/12/2023 01:05, Félix An via Python-list wrote: > I'm used to C# WinForms, which has an easy-to-use drag-and-drop GUI > designer in Visual Studio. Is there anything similar for Tk? How about > Qt? There are any number of them but few that work well. The best I found was Da

Re: Are there any easy-to-use Visual Studio C# WinForms-like GUI designers in the Python world for Tk?

2023-12-29 Thread Jach Feng via Python-list
Félix An 在 2023年12月29日 星期五下午2:05:24 [UTC+13] 的信中寫道: > I'm used to C# WinForms, which has an easy-to-use drag-and-drop GUI > designer in Visual Studio. Is there anything similar for Tk? How about > Qt? What do you recommend as the easiest way to create GUI programs in > Pytho

Re: Are there any easy-to-use Visual Studio C# WinForms-like GUI designers in the Python world for Tk?

2023-12-29 Thread Mats Wichmann via Python-list
On 12/28/23 18:05, Félix An via Python-list wrote: I'm used to C# WinForms, which has an easy-to-use drag-and-drop GUI designer in Visual Studio. Is there anything similar for Tk? How about Qt? What do you recommend as the easiest way to create GUI programs in Python, similar to the ea

RE: Subject: Are there any easy-to-use Visual Studio C# WinForms-like GUI designers in the Python world for Tk?

2023-12-29 Thread Greg Walters via Python-list
> I'm used to C# WinForms, which has an easy-to-use drag-and-drop GUI designer in Visual Studio. Is there anything similar for Tk? How about Qt? What do you recommend as the easiest way to create GUI programs in Python, similar to the ease of use of C# WinForms? I can't say much for

Are there any easy-to-use Visual Studio C# WinForms-like GUI designers in the Python world for Tk?

2023-12-28 Thread Félix An via Python-list
I'm used to C# WinForms, which has an easy-to-use drag-and-drop GUI designer in Visual Studio. Is there anything similar for Tk? How about Qt? What do you recommend as the easiest way to create GUI programs in Python, similar to the ease of use of C# WinForms? -- https://mail.pytho

Re: Windows Gui Frontend

2023-04-03 Thread rbowman
the objects in memory, and connects all your signals for you. > > I know, but having to load the .ui file is awkward. > Even worse, you lose things like code completion. One advantage is customization. It's not Python but we use a GUI system that supports uids. The underlying data i

Re: Windows Gui Frontend

2023-04-03 Thread rbowman
On Sun, 02 Apr 2023 13:50:45 -0700 (PDT), Grant Edwards wrote: > On 2023-04-02, Michael Torrie wrote: >> On 4/2/23 05:09, Dietmar Schwertberger wrote: >>> I also did evaluate all the GUI builder from time to time between 2000 >>> and 2016 to find one that I could r

Re: Windows Gui Frontend

2023-04-03 Thread rbowman
On Sat, 1 Apr 2023 19:19:17 -0600, Michael Torrie wrote: > Qt's commerical licensing is very hostile to small companies, I can say > that much. It's too bad really. But the LGPL will work for most > companies, except for those that might wish to use the embedded version, > such as in cars where

Re: Windows Gui Frontend

2023-04-03 Thread Jach Feng
Jim Schwartz 在 2023年4月1日 星期六晚上8:00:19 [UTC+8] 的信中寫道: > I have another question. I have an app written in python, but I want to add > a windows GUI front end to it. Can this be done in python? What packages > would allow me to do that? > > > > Thanks. There is a GUI

Re: Windows Gui Frontend

2023-04-03 Thread rbowman
On Sat, 1 Apr 2023 10:37:34 -0500, Eryk Sun wrote: > On 4/1/23, Jim Schwartz wrote: >> I have another question. I have an app written in python, but I want >> to add a windows GUI front end to it. Can this be done in python? >> What packages would allow me to do that? &

Re: Windows Gui Frontend

2023-04-03 Thread Rolf Blum
Am 02.04.2023 um 01:13 schrieb Alan Gauld: On 01/04/2023 18:21, Jim Schwartz wrote: Are there any ide’s that will let me design the screen and convert it to python? There is nothing remotely like the VB or Delphi GUI builders. The latest Delphi versions themself can create GUIs for Python

Re: Windows Gui Frontend

2023-04-02 Thread dn via Python-list
On 03/04/2023 02.45, Michael Torrie wrote: On 4/2/23 05:09, Dietmar Schwertberger wrote: I also did evaluate all the GUI builder from time to time between 2000 and 2016 to find one that I could recommend to colleagues, but could not find one. Then I started contributing to wxGlade and I can

Re: Windows Gui Frontend

2023-04-02 Thread Grant Edwards
On 2023-04-02, Michael Torrie wrote: > On 4/2/23 05:09, Dietmar Schwertberger wrote: >> I also did evaluate all the GUI builder from time to time between >> 2000 and 2016 to find one that I could recommend to colleagues, >> but could not find one. Then I started contributin

Re: Windows Gui Frontend

2023-04-02 Thread Igor Korot
Hi, Dietmer, On Sun, Apr 2, 2023 at 1:14 PM Dietmar Schwertberger wrote: > > On 02.04.2023 18:26, Michael Torrie wrote: > > Been a long time. I was initially turned off by the event handling > > system of wx compared to the signals and slots of Gtk and Qt. > When starting with Python GUIs in 1999

Re: Windows Gui Frontend

2023-04-02 Thread Dietmar Schwertberger
On 02.04.2023 18:26, Michael Torrie wrote: Been a long time. I was initially turned off by the event handling system of wx compared to the signals and slots of Gtk and Qt. When starting with Python GUIs in 1999, I evaluated both. Qt event handling had an advantage for C++ where the wxWidgets peo

Re: Windows Gui Frontend

2023-04-02 Thread Dietmar Schwertberger
On 02.04.2023 18:20, Michael Torrie wrote: Well the thing is you don't need to generate Python code at all. Qt provides a UI loader class that loads the UI file at run time, builds the objects in memory, and connects all your signals for you. I know, but having to load the .ui file is awkward.

Re: Windows Gui Frontend

2023-04-02 Thread Michael Torrie
On 2023-04-02 9:09 a.m., Dietmar Schwertberger wrote: >> I've tried wxGlade but never could get into it, or wxWidgets in general. > > Which version? Up to 0.7.2 I agree. Been a long time. I was initially turned off by the event handling system of wx compared to the signals and slots of Gtk and Qt

Re: Windows Gui Frontend

2023-04-02 Thread Michael Torrie
On 2023-04-02 9:09 a.m., Dietmar Schwertberger wrote: > That's what I hated with Qt Designer: it does not output Python code > but  a .ui file. > This was the point where I could not recommend it to anyone. Well the thing is you don't need to generate Python code at all. Qt provides a UI loader

Re: Windows Gui Frontend

2023-04-02 Thread Dietmar Schwertberger
On 02.04.2023 16:45, Michael Torrie wrote: But any modern GUI toolkit has sizers and layout managers. If you're manually placing elements you cannot deal with HiDPI or changing window sizes. Rearranging happens automatically when using sizers and layout managers. I did not talk about

Re: Windows Gui Frontend

2023-04-02 Thread Michael Torrie
On 4/1/23 09:37, Eryk Sun wrote: > Here are a few of the GUI toolkit libraries in common use: > > * tkinter (Tk) > * PyQt (Qt) > * PySide (Qt) > * wxPython (wxWidgets) > * PyGObject (GTK) > > tkinter is included in Python's standard li

Re: Windows Gui Frontend

2023-04-02 Thread Michael Torrie
On 4/2/23 05:09, Dietmar Schwertberger wrote: > I also did evaluate all the GUI builder from time to time between > 2000 and 2016 to find one that I could recommend to colleagues, > but could not find one. Then I started contributing to wxGlade > and I can say that since a few years

Re: Windows Gui Frontend

2023-04-02 Thread Dietmar Schwertberger
On 02.04.2023 01:13, Alan Gauld wrote: I did a deep dive examination of GUI builders back around v2.6 and came away less than enthused. Things may have improved since then but I've seen no real evidence of that. I also did evaluate all the GUI builder from time to time between 2000 and 20

Aw: Re: Windows Gui Frontend

2023-04-02 Thread Karsten Hilbert
> The real time consuming stuff in building GUIs is getting > the basic design right and keeping all the controls, > keyboard bindings and menus in sync. State management > in other words. And cominmg up with sensible design choices _at all_. > I did a deep dive examination of GU

Re: Windows Gui Frontend

2023-04-01 Thread Michael Torrie
On 4/1/23 15:33, Thomas Passin wrote: > OTOH, Qt isn't free for commercial use and the OP seems to be > speculating on coming up with a product to sell at some point. Careful. That's not actually true, even though the marketing team at Qt lets people believe it is. Qt is licensed under the LGPL,

Re: Windows Gui Frontend

2023-04-01 Thread Alan Gauld
On 01/04/2023 18:21, Jim Schwartz wrote: > Are there any ide’s that will let me design the screen and convert it to > python? There is nothing remotely like the VB or Delphi GUI builders. There are some tools somewhat similar to the Java Swing and FX GUI builders with varying degr

Re: Windows Gui Frontend

2023-04-01 Thread Grant Edwards
On 2023-04-01, Thomas Passin wrote: > Having worked with both, I'd rather use PyQt, although Tk might be > easier to get a toy app going with. Both editing windows and packing > are easier for me to understand with PyQt, for one thing. With tk it is _very_ easy to get small apps going. As the

Re: Windows Gui Frontend

2023-04-01 Thread Thomas Passin
On 4/1/2023 5:11 PM, Barry Scott wrote: On 1 Apr 2023, at 18:47, Igor Korot wrote: I suggest going with wxPython/wxGlade. I ported all my wxPython code to PyQt and have not regretted it. wxPython was (its been a while so may not be an issue now) far to hard to make consistent across OS, m

Re: Windows Gui Frontend

2023-04-01 Thread Barry Scott
> On 1 Apr 2023, at 18:47, Igor Korot wrote: > > I suggest going with wxPython/wxGlade. I ported all my wxPython code to PyQt and have not regretted it. wxPython was (its been a while so may not be an issue now) far to hard to make consistent across OS, my apps run on Linux, macOS and Window

Re: Windows Gui Frontend

2023-04-01 Thread Egon Frerich
tkinter is part of python e. Am 01.04.23 um 13:59 schrieb Jim Schwartz: I have another question. I have an app written in python, but I want to add a windows GUI front end to it. Can this be done in python? What packages would allow me to do that? Thanks. -- https://mail.python.org

Re: Windows Gui Frontend

2023-04-01 Thread Mats Wichmann
On 4/1/23 11:34, Eryk Sun wrote: On 4/1/23, Jim Schwartz wrote: Are there any ide’s that will let me design the screen and convert it to python? I doubt it because it was mentioned that this is time consuming. Thanks for the responses everyone. I appreciate it. For Qt, the WYSIWYG UI editor

Re: Windows Gui Frontend

2023-04-01 Thread Dietmar Schwertberger
On 01.04.2023 19:30, Igor Korot wrote: Look at wxGlade (a project designed for wxWidgets). You will design you layout and then just save it as a py file. wxGlade also includes a tutorial to get you started with wxPython itself. You should be able create basic GUIs within a few hours. See https

Re: Windows Gui Frontend

2023-04-01 Thread Igor Korot
hings that you have to deal with > and that soak up the time. It's not usually screen design. I suggest going with wxPython/wxGlade. Thank you. > > >> > >> Sent from my iPhone > >> > >>> On Apr 1, 2023, at 10:37 AM, Eryk Sun wrote: > >&g

Re: Windows Gui Frontend

2023-04-01 Thread Thomas Passin
ave another question.  I have an app written in python, but I want to add a windows GUI front end to it.  Can this be done in python?  What packages would allow me to do that? Here are a few of the GUI toolkit libraries in common use:     * tkinter (Tk)     * PyQt (Qt)     * PySide (Qt)     *

Re: Windows Gui Frontend

2023-04-01 Thread Eryk Sun
On 4/1/23, Jim Schwartz wrote: > Are there any ide’s that will let me design the screen and convert it to > python? I doubt it because it was mentioned that this is time consuming. > > Thanks for the responses everyone. I appreciate it. For Qt, the WYSIWYG UI editor is Qt Designer. The basics ar

Re: Windows Gui Frontend

2023-04-01 Thread Igor Korot
ent from my iPhone > > > On Apr 1, 2023, at 10:37 AM, Eryk Sun wrote: > > > > On 4/1/23, Jim Schwartz wrote: > >> I have another question. I have an app written in python, but I want to > >> add a windows GUI front end to it. Can this be done in python? W

Re: Windows Gui Frontend

2023-04-01 Thread Thomas Passin
ed Pyside2) may be suitable. It is part the Qt framework. Thanks for the responses everyone. I appreciate it. Sent from my iPhone On Apr 1, 2023, at 10:37 AM, Eryk Sun wrote: On 4/1/23, Jim Schwartz wrote: I have another question. I have an app written in python, but I want to add a w

Re: Windows Gui Frontend

2023-04-01 Thread Jim Schwartz
1/23, Jim Schwartz wrote: >> I have another question. I have an app written in python, but I want to >> add a windows GUI front end to it. Can this be done in python? What >> packages would allow me to do that? > > Here are a few of the GUI toolkit libraries in common use: &

Re: Windows Gui Frontend

2023-04-01 Thread Eryk Sun
On 4/1/23, Jim Schwartz wrote: > I have another question. I have an app written in python, but I want to > add a windows GUI front end to it. Can this be done in python? What > packages would allow me to do that? Here are a few of the GUI toolkit libraries in common use: * tk

Re: Windows Gui Frontend

2023-04-01 Thread Thomas Passin
On 4/1/2023 7:59 AM, Jim Schwartz wrote: I have another question. I have an app written in python, but I want to add a windows GUI front end to it. Can this be done in python? What packages would allow me to do that? WxWindows, Tk, and PyQt are some of the common ones. Be aware that GUI

Windows Gui Frontend

2023-04-01 Thread Jim Schwartz
I have another question. I have an app written in python, but I want to add a windows GUI front end to it. Can this be done in python? What packages would allow me to do that? Thanks. -- https://mail.python.org/mailman/listinfo/python-list

Re: Tkinter GUI freezing, used Thread then encountered RuntimeError: threads can only be started once

2023-01-10 Thread MRAB
o use a Thread at all. If the final version of the programme is going to do something long running at that point, then sure. I can't tell what 'change_flag' is doing because of the formatting issue. Is it doing GUI stuff? In a thread? If yes, don't do that. The GUI doesn't like

Re: Tkinter GUI freezing, used Thread then encountered RuntimeError: threads can only be started once

2023-01-10 Thread Cameron Simpson
g running at that point, then sure. I can't tell what 'change_flag' is doing because of the formatting issue. Is it doing GUI stuff? In a thread? If yes, don't do that. The GUI doesn't like that. Only the main thread should do GUI stuff. Aye. This is very important in a

Re: Tkinter GUI freezing, used Thread then encountered RuntimeError: threads can only be started once

2023-01-10 Thread MRAB
You have a 'bare' except, i.e. "except:". Don't do that. It swallows _all_ exceptions and can hide bugs. I don't like how you're passing Thread...start as an argument. IMHO, it would be better/cleaner to pass a plain function, even if the only thing that functio

Tkinter GUI freezing, used Thread then encountered RuntimeError: threads can only be started once

2023-01-10 Thread Abhay Singh
Here is the entire code snippet of the same. Please help def change_flag(top_frame, bottom_frame, button1, button2, button3, button4, controller): global counter, canvas, my_image, chosen, flag, directory canvas.delete('all') button5['state'] = DISABLED counter += 1 chosen, options_text = func

Re: Free OCR package in Python and selecting appropriate widget for the GUI

2021-09-26 Thread Mohsen Owzar
On 9/21/2021 10:38 PM, Mohsen Owzar wrote: > > >>> DFS schrieb am Dienstag, 21. September 2021 um 15:45:38 UTC+2: > > >>>> On 9/21/2021 4:36 AM, Mohsen Owzar wrote: > > >>>>> Hi Guys > > >>>>> Long time ago I've written

Re: Free OCR package in Python and selecting appropriate widget for the GUI

2021-09-23 Thread Mohsen Owzar
ptember 2021 um 15:45:38 UTC+2: > >>>> On 9/21/2021 4:36 AM, Mohsen Owzar wrote: > >>>>> Hi Guys > >>>>> Long time ago I've written a program in Malab a GUI for solving Sudoku > >>>>> puzzles, which worked not so bad. > &

Re: Free OCR package in Python and selecting appropriate widget for the GUI

2021-09-22 Thread DFS
ten a program in Malab a GUI for solving Sudoku puzzles, which worked not so bad. Now I try to write this GUI with Python with PyQt5 or TKinter. First question is: Is there any free OCR software, packages or code in Python, which I can use to recognize the given digits and their positions in the p

Re: Free OCR package in Python and selecting appropriate widget for the GUI

2021-09-22 Thread Mohsen Owzar
DFS schrieb am Mittwoch, 22. September 2021 um 05:10:30 UTC+2: > On 9/21/2021 10:38 PM, Mohsen Owzar wrote: > > DFS schrieb am Dienstag, 21. September 2021 um 15:45:38 UTC+2: > >> On 9/21/2021 4:36 AM, Mohsen Owzar wrote: > >>> Hi Guys > >>> Long time

Re: Free OCR package in Python and selecting appropriate widget for the GUI

2021-09-22 Thread DFS
On 9/21/2021 10:38 PM, Mohsen Owzar wrote: DFS schrieb am Dienstag, 21. September 2021 um 15:45:38 UTC+2: On 9/21/2021 4:36 AM, Mohsen Owzar wrote: Hi Guys Long time ago I've written a program in Malab a GUI for solving Sudoku puzzles, which worked not so bad. Now I try to write this GUI

Re: Free OCR package in Python and selecting appropriate widget for the GUI

2021-09-22 Thread Roland Mueller via Python-list
Hello, ti 21. syysk. 2021 klo 16.53 Mohsen Owzar (mohsen.ow...@gmail.com) kirjoitti: > Hi Guys > Long time ago I've written a program in Malab a GUI for solving Sudoku > puzzles, which worked not so bad. > Now I try to write this GUI with Python with PyQt5 or TKinter. > Fir

Re: Free OCR package in Python and selecting appropriate widget for the GUI

2021-09-21 Thread Igor Korot
o I've written a program in Malab a GUI for solving Sudoku > puzzles, which worked not so bad. > > > Now I try to write this GUI with Python with PyQt5 or TKinter. > > > First question is: > > > Is there any free OCR software, packages or code in Python, which I >

Re: Free OCR package in Python and selecting appropriate widget for the GUI

2021-09-21 Thread Mohsen Owzar
DFS schrieb am Dienstag, 21. September 2021 um 15:45:38 UTC+2: > On 9/21/2021 4:36 AM, Mohsen Owzar wrote: > > Hi Guys > > Long time ago I've written a program in Malab a GUI for solving Sudoku > > puzzles, which worked not so bad. > > Now I try to write th

Re: Free OCR package in Python and selecting appropriate widget for the GUI

2021-09-21 Thread DFS
On 9/21/2021 4:36 AM, Mohsen Owzar wrote: Hi Guys Long time ago I've written a program in Malab a GUI for solving Sudoku puzzles, which worked not so bad. Now I try to write this GUI with Python with PyQt5 or TKinter. First question is: Is there any free OCR software, packages or code in P

Free OCR package in Python and selecting appropriate widget for the GUI

2021-09-21 Thread Mohsen Owzar
Hi Guys Long time ago I've written a program in Malab a GUI for solving Sudoku puzzles, which worked not so bad. Now I try to write this GUI with Python with PyQt5 or TKinter. First question is: Is there any free OCR software, packages or code in Python, which I can use to recognize the

Re: Php vs Python gui (tkinter...) for small remote database app

2021-06-15 Thread Menno Holscher
Op 15-06-2021 om 19:14 schreef Grant Edwards: On 2021-06-15, Menno Holscher wrote: There is no difference regarding security concerns. I find that hard to believe given the long list of CVEs I've just had to sort through for even fairly recent versions of PHP. I just can't belive that Python

Re: Php vs Python gui (tkinter...) for small remote database app

2021-06-15 Thread Grant Edwards
On 2021-06-15, Menno Holscher wrote: > There is no difference regarding security concerns. I find that hard to believe given the long list of CVEs I've just had to sort through for even fairly recent versions of PHP. I just can't belive that Python has anywhere close to that many secruity issues

Re: Php vs Python gui (tkinter...) for small remote database app

2021-06-15 Thread Menno Holscher
to the database open. If using Python with a tkinter gui, I understand a small app can connect to a database so only one port to the database would need to be accessed/open listening to connection. So I would need to worry less about security if using Python over Php for something small, like a

Re: Php vs Python gui (tkinter...) for small remote database app

2021-06-15 Thread Tomasz Rola
an Python > > mainly regarding security. > > Php requires one port for http and one port for the connection to the > > database open. If using Python with a tkinter gui, I understand a small app > > can connect to a database so only one port to the database would need to be

Re: Php vs Python gui (tkinter...) for small remote database app

2021-06-14 Thread dn via Python-list
ne port for the connection to the > database open. If using Python with a tkinter gui, I understand a small app > can connect to a database so only one port to the database would need to be > accessed/open listening to connection. So I would need to worry less about > security if using Py

Php vs Python gui (tkinter...) for small remote database app

2021-06-14 Thread Pascal B via Python-list
Hi, I would like to know if for a small app for instance that requires a connection to a remote server database if php is more suitable than Python mainly regarding security. Php requires one port for http and one port for the connection to the database open. If using Python with a tkinter gui

Re: Solaris 11 GUI framework

2020-11-03 Thread Grant Edwards
On 2020-11-02, Igor Korot wrote: > On Mon, Nov 2, 2020, 3:57 PM Jay Braun wrote: > >> Looking for a GUI framework supported on Solaris 11. > > Wxpython, pygtk, Java. I wouldn't start a new project with pygtk. It's obsolete (Python2 only) and is no longer supported

Re: Solaris 11 GUI framework

2020-11-02 Thread Igor Korot
Hi, On Mon, Nov 2, 2020, 5:02 PM Jay Braun wrote: > Thank you. I should have mentioned that I am looking for a Python GUI > framework. I neglected to mention that since this is a Python group. > Sorry. > Well, first 2 are python and base on gtk. Thank you. -- > https://

Re: Solaris 11 GUI framework

2020-11-02 Thread Jay Braun
Thank you. I should have mentioned that I am looking for a Python GUI framework. I neglected to mention that since this is a Python group. Sorry. -- https://mail.python.org/mailman/listinfo/python-list

Re: Solaris 11 GUI framework

2020-11-02 Thread Igor Korot
Hi, On Mon, Nov 2, 2020, 3:57 PM Jay Braun wrote: > Looking for a GUI framework supported on Solaris 11. > Wxpython, pygtk, Java. Take you poison. Thank you. -- > https://mail.python.org/mailman/listinfo/python-list > -- https://mail.python.org/mailman/listinfo/python-list

Solaris 11 GUI framework

2020-11-02 Thread Jay Braun
Looking for a GUI framework supported on Solaris 11. -- https://mail.python.org/mailman/listinfo/python-list

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-11-01 Thread Greg Ewing
nt with regards to button styles, fonts, colors, etc. Well, Microsoft has a lot more resources than your typical third party GUI toolkit developer to spend on re-doing everything periodically. It still make sense to let them do the hard work instead of replicating it all yourself. In fact I k

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Michael Torrie
st meaning. Going forward, perhaps MS intends UWP to be the new native. I don't know and I'm not sure MS knows. MS Office hasn't used native win32 widgets for many years now (since Office 2000 I think, perhaps before). In fact I know of very few Windows applications that use ex

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Greg Ewing
On 1/11/20 9:44 am, Barry Scott wrote: It does not appear to me that use native widgets is important for a tool kit. It's not strictly necessary. However, recreating the exact appearance and behaviour of native widgets is a lot of work, and difficult to do well -- most toolkits that attempt th

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Barry Scott
t;> wrote: > > > > Hello! > > > > I've been reading the GUI toolkit posts. > > > > If anyone can give me a push in the right python direction on > > my needs, I'd be grateful. > > > > This is for business applications, not games. >

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Igor Korot
Hi, Barry, On Sat, Oct 31, 2020, 3:39 AM Barry Scott wrote: > > > > On 29 Oct 2020, at 15:54, flaskee via Python-list < > python-list@python.org> wrote: > > > > Hello! > > > > I've been reading the GUI toolkit posts. > > > > If any

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Betty Hollinshead
On Saturday, 31 October 2020 at 08:36:48 UTC, Barry Scott wrote: > > On 29 Oct 2020, at 15:54, flaskee via Python-list > > wrote: > > > > Hello! > > > > I've been reading the GUI toolkit posts. > > > > snip > > > Barry Suggest

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Betty Hollinshead
On Saturday, 31 October 2020 at 08:36:48 UTC, Barry Scott wrote: > > On 29 Oct 2020, at 15:54, flaskee via Python-list > > wrote: > > > > Hello! > > > > I've been reading the GUI toolkit posts. > > > > If anyone can give me a push i

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-31 Thread Barry Scott
> On 29 Oct 2020, at 15:54, flaskee via Python-list > wrote: > > Hello! > > I've been reading the GUI toolkit posts. > > If anyone can give me a push in the right python direction on > my needs, I'd be grateful. > > This is for business applic

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-30 Thread flaskee via Python-list
I was actually working on a summarized list for my question. I thought that I'd produce an up-to-date list of GUI toolkits, with everyone's responses; plus what I've cobbled together from comparisons on other sites. Sent with ProtonMail Secure Email. ‐‐‐ Original Mes

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Dan Stromberg
On Thu, Oct 29, 2020 at 4:48 PM Ethan Furman wrote: > On 10/29/20 11:30 AM, Igor Korot wrote: > > > If you have any further questions you can contact me directly. > > Please do not. By keeping the discussion on the list many people can > participate and learn. > This list isn't terribly overnois

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Igor Korot
Hi, Ethan, On Thu, Oct 29, 2020 at 6:51 PM Ethan Furman wrote: > > On 10/29/20 11:30 AM, Igor Korot wrote: > > > If you have any further questions you can contact me directly. > > Please do not. By keeping the discussion on the list many people can > participate and learn. If the OP has furthe

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Ethan Furman
On 10/29/20 11:30 AM, Igor Korot wrote: If you have any further questions you can contact me directly. Please do not. By keeping the discussion on the list many people can participate and learn. -- ~Ethan~ -- https://mail.python.org/mailman/listinfo/python-list

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread flaskee via Python-list
> The Python toolkits that I've looked at feel mostly grid-oriented > or zone-oriented (you can put the button on the left, or middle, > or right, etc). I don't think it is easily possible in a cross-platform environment. But even if your software is one platform only how will you handle DPI chan

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Igor Korot
Hi, On Thu, Oct 29, 2020 at 11:33 AM flaskee via Python-list wrote: > > Hello! > > I've been reading the GUI toolkit posts. > > If anyone can give me a push in the right python direction on > my needs, I'd be grateful. > > This is for business applications

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Dietmar Schwertberger
On 29.10.2020 16:54, flaskee via Python-list wrote: Thank you for your help in advance! Maybe, you should outline what you actually want to accomplish on each platform group (desktop / mobile). Regards, Dietmar -- https://mail.python.org/mailman/listinfo/python-list

Re: GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread Igor Korot
Hi, On Thu, Oct 29, 2020 at 1:05 PM Dennis Lee Bieber wrote: > > On Thu, 29 Oct 2020 15:54:33 +, flaskee via Python-list > declaimed the following: > > > > >What I'd like: > > > >* To target MacOS, Windows, Linux, Android using native widgets (this drops > >out Kivy). > > > That's g

GUI: I am also looking for a nudge into the best (GUI) direction.

2020-10-29 Thread flaskee via Python-list
Hello! I've been reading the GUI toolkit posts. If anyone can give me a push in the right python direction on my needs, I'd be grateful. This is for business applications, not games. (but if a game toolkit fits...) I'm coming from Actionscript, where there is a lot of GUI fl

Re: GUI (tkinter) popularity and job prospects for

2020-10-26 Thread Dietmar Schwertberger
On 23.10.2020 18:52, John Pote wrote: I've used tkinter and wxPython occasionally in the past for 1 off test tasks (and interest). What's the advantage of Qt? Qt does support mobile and touch oriented user interfaces. Also, it does support GUI programs on microcontrollers now on

Re: GUI (tkinter) popularity and job prospects for

2020-10-26 Thread Edmondo Giovannozzi
Il giorno venerdì 23 ottobre 2020 alle 18:55:53 UTC+2 john... ha scritto: > On 23/10/2020 05:47, Grant Edwards wrote: > > > >> I think that commercial desktop applications with a python > >> compatible GUI would likely use QT or a Python binding thereof. > > A

Re: GUI (tkinter) popularity and job prospects for

2020-10-25 Thread Barry Scott
> On 23 Oct 2020, at 17:52, John Pote wrote: > > > On 23/10/2020 05:47, Grant Edwards wrote: >> >>> I think that commercial desktop applications with a python >>> compatible GUI would likely use QT or a Python binding thereof. >> Agreed. If yo

Re: GUI (tkinter) popularity and job prospects for

2020-10-23 Thread Terry Reedy
On 10/23/2020 12:52 PM, John Pote wrote: On 23/10/2020 05:47, Grant Edwards wrote: I think that commercial desktop applications with a python compatible GUI would likely use QT or a Python binding thereof. Agreed. If you want to improve you "hirability" for GUI application deve

Re: GUI (tkinter) popularity and job prospects for

2020-10-23 Thread Grant Edwards
On 2020-10-23, John Pote wrote: > On 23/10/2020 05:47, Grant Edwards wrote: >> >>> I think that commercial desktop applications with a python >>> compatible GUI would likely use QT or a Python binding thereof. >> Agreed. If you want to improve you "hirabili

Re: GUI (tkinter) popularity and job prospects for

2020-10-23 Thread Christian Gollwitzer
Am 22.10.20 um 23:52 schrieb Paul Rubin: Michael Torrie writes: I doubt you'll find any jobs connected a particular Python GUI toolkit. It would be really nice if there was a way to straightforwardly run Tkinter applications on Android. You'd install a single .apk and that wou

Re: GUI (tkinter) popularity and job prospects for

2020-10-23 Thread John Pote
On 23/10/2020 05:47, Grant Edwards wrote: I think that commercial desktop applications with a python compatible GUI would likely use QT or a Python binding thereof. Agreed. If you want to improve you "hirability" for GUI application development, I would probably put Qt first. Th

Re: GUI (tkinter) popularity and job prospects for

2020-10-23 Thread Grant Edwards
tioning >> those. Why is that ? > > I think that commercial desktop applications with a python > compatible GUI would likely use QT or a Python binding thereof. Agreed. If you want to improve you "hirability" for GUI application development, I would probably put Qt firs

Re: GUI (tkinter) popularity and job prospects for

2020-10-23 Thread Grant Edwards
On 2020-10-22, Michael Torrie wrote: > I doubt you'll find any jobs connected a particular Python GUI toolkit. > Except maybe at Red Hat. A couple years ago my employer was looking for (and hired) a Python wx application developer. > Most likely you'll find Python used in

Re: GUI (tkinter) popularity and job prospects for

2020-10-22 Thread jfong
Lammie Jonson於 2020年10月23日星期五 UTC+8上午5時20分45秒寫道: > Thanks, > > Yes, I have some sense about how to do job interviews and market myself > which is always an ongoing process. > > I also just have an interest in different technologies that I may want to > investigate as I can get bored with cert

Re: GUI (tkinter) popularity and job prospects for

2020-10-22 Thread Terry Reedy
applications with a python compatible GUI would likely use QT or a Python binding thereof. -- Terry Jan Reedy -- https://mail.python.org/mailman/listinfo/python-list

Re: GUI (tkinter) popularity and job prospects for

2020-10-22 Thread 2QdxY4RzWzUUiLuE
7;s rarely why you actually get hired or paid. I picked up Python in 1997 to build some proofs-of-concept for some designs I was working on. I ended up with a tkinter based GUI, but only because the command line programs came together so quickly. IMO, the GUI didn't add anything to my de

Re: GUI (tkinter) popularity and job prospects for

2020-10-22 Thread Lammie Jonson
Thanks, Yes, I have some sense about how to do job interviews and market myself which is always an ongoing process. I also just have an interest in different technologies that I may want to investigate as I can get bored with certain things a little at times. If some technology seems a lit

Re: GUI (tkinter) popularity and job prospects for

2020-10-22 Thread Chris Angelico
On Fri, Oct 23, 2020 at 8:39 AM Michael Torrie wrote: > > I was going to look at something like tensorflow perhaps, though I am > > not sure if machine learning is that easy to pickup or not > > Not sure anything difficult and worthwhile, even if it is popular and in > demand, is something you can

Re: GUI (tkinter) popularity and job prospects for

2020-10-22 Thread Michael Torrie
or tkinter and wxpython it > appeared that there was hardly any job listings mentioning those. Why > is that ? It's a bit of a demotivating factor to get very serious > with tk etc. I doubt you'll find any jobs connected a particular Python GUI toolkit. Except maybe at Red Hat.

Re: GUI (tkinter) popularity and job prospects for

2020-10-22 Thread Tal Einat
Hi Lammie, On Thu, Oct 22, 2020 at 10:03 PM Lammie Jonson wrote: > > I looked at tkinter which seems to have quite a few examples out there, > but when I searched indeed.com for tkinter and wxpython it appeared that > there was hardly any job listings mentioning those. Why is that ? > My guess

Re: GUI (tkinter) popularity and job prospects for

2020-10-22 Thread Rich Shepard
On Thu, 22 Oct 2020, Lammie Jonson wrote: I looked at tkinter which seems to have quite a few examples out there, but when I searched indeed.com for tkinter and wxpython it appeared that there was hardly any job listings mentioning those. Why is that ? It's a bit of a demotivating factor to get

GUI (tkinter) popularity and job prospects for

2020-10-22 Thread Lammie Jonson
I have been a rails developer as well as JS/react. I had wanted to look at python a bit due to it's popularity. I looked at tkinter which seems to have quite a few examples out there, but when I searched indeed.com for tkinter and wxpython it appeared that there was hardly any job listings m

  1   2   3   4   5   6   7   8   9   10   >