Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #108876
| Path | csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail |
|---|---|
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
| 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 | <mailman.61.1463789187.27390.python-list@python.org> (permalink) |
| References | <c8fc56f2-c653-4913-8354-6b75c6d7cb41@googlegroups.com> <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 | <python-python-list@m.gmane.org> |
| 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 <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| X-Mailman-Original-Message-ID | <3b9vjbh48cgrcqo2a275jnjes9l9omunbv@4ax.com> |
| X-Mailman-Original-References | <c8fc56f2-c653-4913-8354-6b75c6d7cb41@googlegroups.com> |
| Xref | csiph.com comp.lang.python:108876 |
Show key headers only | View raw
On Fri, 20 May 2016 14:39:15 -0700 (PDT), Xristos Xristoou
<saxri89@gmail.com> 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/
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
python for complte program ? Xristos Xristoou <saxri89@gmail.com> - 2016-05-20 14:39 -0700 Re: python for complte program ? Joel Goldstick <joel.goldstick@gmail.com> - 2016-05-20 18:03 -0400 Re: python for complte program ? Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2016-05-20 20:06 -0400
csiph-web