Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Dennis Lee Bieber Newsgroups: comp.lang.python Subject: Re: python for complte program ? Date: Fri, 20 May 2016 20:06:10 -0400 Organization: IISS Elusive Unicorn Lines: 24 Message-ID: References: <3b9vjbh48cgrcqo2a275jnjes9l9omunbv@4ax.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de Atdu/OuJJdQJK0rBJD8i7AoaMDmyBah5pgUcyAYAQJHw== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python,': 0.02; 'scripts': 0.09; 'exits': 0.09; 'interpreter,': 0.09; 'libraries.': 0.09; 'message-id:@4ax.com': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'tcl/tk': 0.09; 'python': 0.10; 'subject:python': 0.14; 'interpreter': 0.15; '2016': 0.16; 'libs': 0.16; 'received:80.91.229.3': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'subject:program': 0.16; 'which,': 0.16; 'directory.': 0.18; 'url:home': 0.18; 'archive': 0.18; 'gui': 0.18; 'python?': 0.18; 'runs': 0.18; 'tkinter': 0.22; "doesn't": 0.26; 'header:X -Complaints-To:1': 0.26; 'fri,': 0.27; 'subject: ?': 0.27; 'interface': 0.29; 'itself,': 0.29; 'tutorial': 0.29; 'program,': 0.29; '-0700': 0.33; 'directory,': 0.33; 'interaction': 0.33; 'running': 0.34; 'but': 0.36; 'skip:i 20': 0.36; 'needed': 0.36; 'there': 0.36; 'others.': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'charset:us-ascii': 0.37; 'system.': 0.39; 'to:addr:python.org': 0.40; 'where': 0.40; 'some': 0.40; 'your': 0.60; 'programs': 0.62; 'complete': 0.63; '>how': 0.84; '>with': 0.84; 'gtk,': 0.84; 'dennis': 0.91; 'received:108': 0.93 X-Injected-Via-Gmane: http://gmane.org/ X-Gmane-NNTP-Posting-Host: adsl-108-73-117-91.dsl.klmzmi.sbcglobal.net X-Newsreader: Forte Agent 6.00/32.1186 X-No-Archive: YES X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: <3b9vjbh48cgrcqo2a275jnjes9l9omunbv@4ax.com> X-Mailman-Original-References: Xref: csiph.com comp.lang.python:108876 On Fri, 20 May 2016 14:39:15 -0700 (PDT), Xristos Xristoou declaimed the following: >hello i want to ask if a python is a good for to do it a complete program(.exe)? Python, itself, doesn't compile down to executables. There are packages which, in essence, an "exe" that is a self-extracting archive of the Python interpreter, your program, and any needed libraries. Running such an "exe" unpacks everything into a temporary directory, runs the interpreter with your program, and when the program exits erases the temporary directory. >with user interface,module interface,background scripts where compile if >the users calls some scripts,windows with interaction with the users? >how can i do that with the python? >how can libs need for this ? >some tutorial for complete programs ? Standard Python installations include Tkinter -- an interface to the Tk part of TCL/TK -- as a GUI system. But there are also packages available for WxWindows, GTK, and likely a few others. -- Wulfraed Dennis Lee Bieber AF6VN wlfraed@ix.netcom.com HTTP://wlfraed.home.netcom.com/