Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #108870 > unrolled thread
| Started by | Xristos Xristoou <saxri89@gmail.com> |
|---|---|
| First post | 2016-05-20 14:39 -0700 |
| Last post | 2016-05-20 20:06 -0400 |
| Articles | 3 — 3 participants |
Back to article view | Back to comp.lang.python
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
| From | Xristos Xristoou <saxri89@gmail.com> |
|---|---|
| Date | 2016-05-20 14:39 -0700 |
| Subject | python for complte program ? |
| Message-ID | <c8fc56f2-c653-4913-8354-6b75c6d7cb41@googlegroups.com> |
hello i want to ask if a python is a good for to do it a complete program(.exe)? 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 ?
[toc] | [next] | [standalone]
| From | Joel Goldstick <joel.goldstick@gmail.com> |
|---|---|
| Date | 2016-05-20 18:03 -0400 |
| Message-ID | <mailman.58.1463781842.27390.python-list@python.org> |
| In reply to | #108870 |
On Fri, May 20, 2016 at 5:39 PM, Xristos Xristoou <saxri89@gmail.com> wrote: > hello i want to ask if a python is a good for to do it a complete program(.exe)? > 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 ? > -- > https://mail.python.org/mailman/listinfo/python-list There are some tools that will let you package your program with python, but if your user has python on his system, you may not need to do this -- Joel Goldstick http://joelgoldstick.com/blog http://cc-baseballstats.info/stats/birthdays
[toc] | [prev] | [next] | [standalone]
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
|---|---|
| Date | 2016-05-20 20:06 -0400 |
| Message-ID | <mailman.61.1463789187.27390.python-list@python.org> |
| In reply to | #108870 |
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/
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web