Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #52021 > unrolled thread
| Started by | Gilles <nospam@nospam.com> |
|---|---|
| First post | 2013-08-06 12:35 +0200 |
| Last post | 2013-08-08 11:17 +0200 |
| Articles | 6 — 4 participants |
Back to article view | Back to comp.lang.python
[GUI] Good frameworks for Windows/Mac? Gilles <nospam@nospam.com> - 2013-08-06 12:35 +0200
Re: [GUI] Good frameworks for Windows/Mac? Vlastimil Brom <vlastimil.brom@gmail.com> - 2013-08-06 13:22 +0200
Re: [GUI] Good frameworks for Windows/Mac? Gilles <nospam@nospam.com> - 2013-08-07 00:13 +0200
Re: [GUI] Good frameworks for Windows/Mac? Jordi Riera <kender.jr@gmail.com> - 2013-08-06 13:03 +0200
Re: [GUI] Good frameworks for Windows/Mac? sagar varule <sagar.varule@gmail.com> - 2013-08-08 01:47 -0700
Re: [GUI] Good frameworks for Windows/Mac? Gilles <nospam@nospam.com> - 2013-08-08 11:17 +0200
| From | Gilles <nospam@nospam.com> |
|---|---|
| Date | 2013-08-06 12:35 +0200 |
| Subject | [GUI] Good frameworks for Windows/Mac? |
| Message-ID | <d5k10959lpbkdh02o5em9tmfhlqnac20vh@4ax.com> |
Hello I need to write a small GUI application that should run on Windows and Mac. What open-source framework would you recommend? I just need basic widgets (button, listbox, etc.) and would rather a solution that can get me up and running fast. I know about wxWidgets and Qt: Are there other good options I should know about? Thank you.
[toc] | [next] | [standalone]
| From | Vlastimil Brom <vlastimil.brom@gmail.com> |
|---|---|
| Date | 2013-08-06 13:22 +0200 |
| Message-ID | <mailman.244.1375788124.1251.python-list@python.org> |
| In reply to | #52021 |
2013/8/6 Gilles <nospam@nospam.com>: > Hello > > I need to write a small GUI application that should run on Windows and > Mac. > > What open-source framework would you recommend? I just need basic > widgets (button, listbox, etc.) and would rather a solution that can > get me up and running fast. > > I know about wxWidgets and Qt: Are there other good options I should > know about? > > Thank you. > -- > http://mail.python.org/mailman/listinfo/python-list Hi, I mostly use wxPython myself, but if you just need some basic widgets and not some very complex or non-standard layouts, the tkinter - available in the standard library - might be perfectly viable. http://docs.python.org/3.3/library/tk.html The more recent versions of python also support ttk and Tix which has further possibilities, styling etc. There is further e.g. Python GUI http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/ and several others http://wiki.python.org/moin/GuiProgramming hth, vbr
[toc] | [prev] | [next] | [standalone]
| From | Gilles <nospam@nospam.com> |
|---|---|
| Date | 2013-08-07 00:13 +0200 |
| Message-ID | <a7t209h18l8ca02hlk7d5t6kbujdno2pot@4ax.com> |
| In reply to | #52032 |
On Tue, 6 Aug 2013 13:22:01 +0200, Vlastimil Brom <vlastimil.brom@gmail.com> wrote: >I mostly use wxPython myself, but if you just need some basic widgets >and not some very complex or non-standard layouts, the tkinter - >available in the standard library - might be perfectly viable. >http://docs.python.org/3.3/library/tk.html >The more recent versions of python also support ttk and Tix which has >further possibilities, styling etc. >There is further e.g. Python GUI >http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/ > >and several others >http://wiki.python.org/moin/GuiProgramming Thanks for the links. I'll play with Tkinter, and if it's not good enough, check the alternatives.
[toc] | [prev] | [next] | [standalone]
| From | Jordi Riera <kender.jr@gmail.com> |
|---|---|
| Date | 2013-08-06 13:03 +0200 |
| Message-ID | <mailman.247.1375790855.1251.python-list@python.org> |
| In reply to | #52021 |
[Multipart message — attachments visible in raw view] — view raw
Hey you can build GUIs with tkinter <http://wiki.python.org/moin/TkInter>. Easy but not as powerful than PyQt can be. I think it is os agnostic. Regards, Jordi On Tue, Aug 6, 2013 at 12:35 PM, Gilles <nospam@nospam.com> wrote: > Hello > > I need to write a small GUI application that should run on Windows and > Mac. > > What open-source framework would you recommend? I just need basic > widgets (button, listbox, etc.) and would rather a solution that can > get me up and running fast. > > I know about wxWidgets and Qt: Are there other good options I should > know about? > > Thank you. > -- > http://mail.python.org/mailman/listinfo/python-list > -- - Jordi Riera, Connecting people. +33 662217507
[toc] | [prev] | [next] | [standalone]
| From | sagar varule <sagar.varule@gmail.com> |
|---|---|
| Date | 2013-08-08 01:47 -0700 |
| Message-ID | <e5b616ee-f934-4514-bca1-d55ca80f14ec@googlegroups.com> |
| In reply to | #52021 |
On Tuesday, August 6, 2013 4:05:40 PM UTC+5:30, Gilles wrote: > Hello > > > > I need to write a small GUI application that should run on Windows and > > Mac. > > > > What open-source framework would you recommend? I just need basic > > widgets (button, listbox, etc.) and would rather a solution that can > > get me up and running fast. > > > > I know about wxWidgets and Qt: Are there other good options I should > > know about? > > > > Thank you. Pyside is also Good. It has a Designer which can be helpful.
[toc] | [prev] | [next] | [standalone]
| From | Gilles <nospam@nospam.com> |
|---|---|
| Date | 2013-08-08 11:17 +0200 |
| Message-ID | <0ho609t93l22evbjfrsf0813ffm66n57am@4ax.com> |
| In reply to | #52177 |
On Thu, 8 Aug 2013 01:47:21 -0700 (PDT), sagar varule <sagar.varule@gmail.com> wrote: >Pyside is also Good. It has a Designer which can be helpful. Thanks for the info.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web