Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Dietmar Schwertberger Newsgroups: comp.lang.python Subject: Re: Everything good about Python except GUI IDE? Date: Sat, 27 Feb 2016 15:20:48 +0100 Lines: 24 Message-ID: References: <64a6599c-fae1-469d-bcee-875165b3cc7d@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de jEcRbUKewasWdNr54VVeGQI0o9P9FzKICNDkl+mOY8zQ== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.028 X-Spam-Evidence: '*H*': 0.94; '*S*': 0.00; 'subject:Python': 0.05; 'needed,': 0.05; 'ide': 0.09; 'underlying': 0.09; 'python': 0.10; 'result.': 0.15; 'ides': 0.16; 'measurement': 0.16; 'qtdesigner': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:GUI': 0.16; 'wrote:': 0.16; 'gui': 0.18; 'thanks.': 0.18; 'builder': 0.22; 'header:In-Reply-To:1': 0.24; 'header:User-Agent:1': 0.26; 'received:192.168.10': 0.29; 'code': 0.30; 'probably': 0.31; 'point': 0.33; "isn't": 0.35; 'but': 0.36; 'there': 0.36; 'visual': 0.36; 'to:addr:python-list': 0.36; 'subject:?': 0.36; 'subject:: ': 0.37; 'really': 0.37; 'enough': 0.39; 'received:192': 0.39; 'to:addr:python.org': 0.40; 'still': 0.40; 'received:de': 0.40; 'some': 0.40; 'software': 0.40; 'hope': 0.61; 'email addr:gmail.com': 0.62; 'back': 0.62; 'today,': 0.62; 'charset:windows-1252': 0.62; 'yourself': 0.73; 'comparable': 0.84; 'pyqt.': 0.84; 'subject:good': 0.84; 'received:192.168.0.5': 0.91 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.0 In-Reply-To: <64a6599c-fae1-469d-bcee-875165b3cc7d@googlegroups.com> X-Virus-Scanned: clamav-milter 0.98.7 at mxout2 X-Virus-Status: Clean DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mailerdienst.de; s=dkim; t=1456582857; bh=OW3cn8sPOBlGHvLMhrqV2gFm0AFD+55YH7h281NGWMg=; h=Subject:To:References:From:Date:In-Reply-To:From; b=bI7MoufV4RKgZ40vSQAvNgP6dYNaNLN8aFK8/WYumWhWMMk4xZLKoTYkdPer7RR3K 1R9ly0m0RGFejBANQkdc/KAHsPrfsZcaqke7cfu3BFLt99HtGrhHa4YiAYKViEVigk poXn8SPKC6ZbrZkAq1AkloBtzFJ6auxGlADIB5XM= X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.21rc2 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:103588 On 27.02.2016 12:18, wrong.address.1@gmail.com wrote: > Isn't there any good GUI IDE like Visual Basic? I hope there are some less well known GUI IDEs which I did not come across. Thanks. As of today, there's no Python GUI builder comparable to VB 6. There are some like QtDesigner or wxGlade, but they either don't generate Python code directly or they can only be used if you know the underlying toolkit good enough to create the GUI yourself. You may try out some, but I can almost guarantee you that you will come to the same result. If you want a GUI, create it yourself using either wxPython or PyQt. For engineering applications that's probably the weakest point that Python has. It's holding back a lot of people... Well, for most measurement or control software a GUI is not really needed, but still people want it. Regards, Dietmar