Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.008 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'subject:Windows': 0.02; 'subject:: [': 0.04; 'open-source': 0.04; 'tkinter': 0.07; 'cc:addr:python-list': 0.11; 'python': 0.11; 'gui': 0.12; 'mostly': 0.14; 'windows': 0.15; 'gilles': 0.16; 'styling': 0.16; 'subject:GUI': 0.16; 'tix': 0.16; 'wxpython': 0.16; 'library': 0.18; 'subject:] ': 0.20; 'cc:addr:python.org': 0.22; 'url:moin': 0.24; 'versions': 0.24; 'cc:2**0': 0.24; 'options': 0.25; 'subject:/': 0.26; 'header:In-Reply-To:1': 0.27; 'message- id:@mail.gmail.com': 0.30; 'url:mailman': 0.30; 'url:wiki': 0.31; 'fast.': 0.31; 'run': 0.32; 'url:python': 0.33; 'running': 0.33; 'framework': 0.33; 'basic': 0.35; 'etc.)': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'url:listinfo': 0.36; 'subject:?': 0.36; 'hi,': 0.36; 'url:org': 0.36; 'should': 0.36; 'application': 0.37; 'thank': 0.38; 'e.g.': 0.38; 'url:library': 0.38; 'rather': 0.38; 'recent': 0.39; 'url:mail': 0.40; 'url:3': 0.61; 'further': 0.61; 'you.': 0.62; 'more': 0.64; 'about?': 0.84; 'url:canterbury': 0.84; 'subject:Good': 0.91; 'url:nz': 0.93; 'url:tk': 0.95 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=E/kelR5MR7CDos3GK9slKx20zkZOTG/69nXO3UHm+3o=; b=UQc1fNMLPklfM5+fXwlFaHIMaWKVQygbphYnTE0bUWCB2UlSxADupcuoTM2Ex2AxS8 wLC3mvdpQrpkYEeZ6wH3ku5Gap7i0ZZXYWP5mlhKL3jpNc3M5XsgSk2JKqWMk57tylFg 8ukx2U2l3ndRL588CXUUDFAn1gS05PijNn+sZpVNAoIxfKnChZ/7jd0632tLAdjzTwEb YsQUlroISM2X329EHyLyUGJWpIJtnbx1CEK8JlX6rpP9Z5SuMOln08r9pTXaJ+Vx11cp 0HbHGthBP2kYQdAvUXxnR7JhzAD6OZwzwitmY0/BX8ceXur73d06kQQpndeqkIZ9O/BZ N7wA== MIME-Version: 1.0 X-Received: by 10.60.60.105 with SMTP id g9mr656322oer.8.1375788121668; Tue, 06 Aug 2013 04:22:01 -0700 (PDT) In-Reply-To: References: Date: Tue, 6 Aug 2013 13:22:01 +0200 Subject: Re: [GUI] Good frameworks for Windows/Mac? From: Vlastimil Brom To: Gilles Content-Type: text/plain; charset=ISO-8859-1 Cc: python X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 32 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1375788124 news.xs4all.nl 15889 [2001:888:2000:d::a6]:56227 X-Complaints-To: abuse@xs4all.nl Path: csiph.com!usenet.pasdenom.info!news.franciliens.net!feed.ac-versailles.fr!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Xref: csiph.com comp.lang.python:52032 2013/8/6 Gilles : > 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