Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #83730 > unrolled thread
| Started by | no nein <jhoulberg.90@gmail.com> |
|---|---|
| First post | 2015-01-13 16:36 -0800 |
| Last post | 2015-01-14 12:48 -0800 |
| Articles | 3 — 3 participants |
Back to article view | Back to comp.lang.python
Compiling multiple python scripts into an exe file no nein <jhoulberg.90@gmail.com> - 2015-01-13 16:36 -0800
Re: Compiling multiple python scripts into an exe file dieter <dieter@handshake.de> - 2015-01-14 07:53 +0100
Re: Compiling multiple python scripts into an exe file Dan Stromberg <drsalists@gmail.com> - 2015-01-14 12:48 -0800
| From | no nein <jhoulberg.90@gmail.com> |
|---|---|
| Date | 2015-01-13 16:36 -0800 |
| Subject | Compiling multiple python scripts into an exe file |
| Message-ID | <24d5878b-8f5f-48a5-8b47-1c4fbe6e5268@googlegroups.com> |
Basically, is it possible to compile multiple unrelated python scripts into a single exe file, so when execute it several python programs are run at once. In order to use this on another machine without python installed and only by using one single file.
[toc] | [next] | [standalone]
| From | dieter <dieter@handshake.de> |
|---|---|
| Date | 2015-01-14 07:53 +0100 |
| Message-ID | <mailman.17703.1421218443.18130.python-list@python.org> |
| In reply to | #83730 |
no nein <jhoulberg.90@gmail.com> writes: > Basically, is it possible to compile multiple unrelated python scripts into a single exe file, so when execute it several python programs are run at once. These are two distinct problems: * for doing things in paralell, look at "threading" or "multiprocessing" * for generating exe files, look at "freeze".
[toc] | [prev] | [next] | [standalone]
| From | Dan Stromberg <drsalists@gmail.com> |
|---|---|
| Date | 2015-01-14 12:48 -0800 |
| Message-ID | <mailman.17734.1421268533.18130.python-list@python.org> |
| In reply to | #83730 |
On Tue, Jan 13, 2015 at 10:53 PM, dieter <dieter@handshake.de> wrote: > no nein <jhoulberg.90@gmail.com> writes: > >> Basically, is it possible to compile multiple unrelated python scripts into a single exe file, so when execute it several python programs are run at once. > > These are two distinct problems: > > * for doing things in paralell, look at "threading" or "multiprocessing" Or subprocess. > * for generating exe files, look at "freeze". Or nuitka.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web