Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.albasani.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.014 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'subject:Python': 0.06; 'tkinter': 0.07; 'seemed': 0.09; 'behaviour.': 0.16; 'elsewhere.': 0.16; 'from:addr:torriem': 0.16; 'from:name:michael torrie': 0.16; 'pyqt,': 0.16; 'python),': 0.16; 'pythonic': 0.16; 'sorting': 0.16; 'subject:GUI': 0.16; 'unexpected': 0.16; 'wrote:': 0.18; 'translated': 0.19; 'programming': 0.22; 'header:User-Agent:1': 0.23; 'mind.': 0.24; 'helpful': 0.24; "i've": 0.25; 'asking': 0.27; 'header:In-Reply-To:1': 0.27; 'tried': 0.27; '(which': 0.31; 'encouraged': 0.31; 'guess': 0.33; 'maybe': 0.34; "can't": 0.35; 'except': 0.35; 'but': 0.35; 'c++': 0.36; "didn't": 0.36; 'subject:?': 0.36; 'list': 0.37; 'message-id:@gmail.com': 0.38; 'problems': 0.38; 'to:addr:python-list': 0.38; 'fact': 0.38; 'pm,': 0.38; 'little': 0.38; 'to:addr:python.org': 0.39; 'mailing': 0.39; 'received:org': 0.40; 'called': 0.40; 'finally': 0.65; 'experience.': 0.67; 'close': 0.67; 'details,': 0.68; 'lack': 0.78; 'frustrating': 0.84 X-Virus-Scanned: amavisd-new at torriefamily.org Date: Thu, 12 Sep 2013 22:15:16 -0600 From: Michael Torrie User-Agent: Mozilla/5.0 (X11; Linux i686; rv:10.0.12) Gecko/20130105 Thunderbird/10.0.12 MIME-Version: 1.0 To: python Subject: Re: Python GUI? References: <1a8b14b3-85f3-4515-ba43-9b40e1a89f1d@googlegroups.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit 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: 19 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1379045723 news.xs4all.nl 15875 [2001:888:2000:d::a6]:59419 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:54100 On 09/12/2013 09:39 PM, Peter wrote: > I stuck with Tkinter combined with PMW for a very long time, but the > lack of extra widgets finally drove me to look elsewhere. > > I tried PyQT but didn't have a good experience. I can't remember > details, but things just seemed to have little "gotchas" - which the > mailing list were very helpful with sorting out, but I found it > frustrating to keep asking for help over little items of unexpected > behaviour. Interesting. I have used Qt and PyQt, and except for the fact that PyQt isn't very pythonic (feels like C++ translated directly to Python), I never had any problems with it. Maybe since I was already familiar with signals and slots programming I never found any unexpected behavior[1]. I've never used Tkinter, and I only ever used wxWidgets once (back when it was called wxWindows), and the close similarity to MFC at the time (which I was fleeing) didn't sit right with me. Also the flexible layout that Qt and Gtk encouraged was a big plus in my mind. I guess you like what you get used to.