Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed2a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'scripts': 0.03; 'subject:file': 0.07; 'subject:into': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'jan': 0.12; 'cc:name:python list': 0.16; 'distinct': 0.16; 'exe': 0.16; 'once.': 0.16; 'subject:exe': 0.16; 'subject:python': 0.16; 'wrote:': 0.18; 'file,': 0.19; 'cc:addr:python.org': 0.22; 'cc:2**0': 0.24; 'header:In-Reply- To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; '13,': 0.31; 'writes:': 0.31; 'run': 0.32; 'received:google.com': 0.35; 'doing': 0.36; 'possible': 0.36; 'two': 0.37; 'pm,': 0.38; 'generating': 0.39; '2015': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=inw1U/gzPYbR5Ach60lTKh2wqYAU4m3RWo4EoRlFmU0=; b=u9Q4by00hhILNF4I61Et7lfwLTLkLbhjFAgt/ADokbKoodHoo6zcdjSascrIRKnodF L9L0Si1eM6iNhI1y1oK1OQjxuLAB8Nap3CjxqhqOLuPIS0ETHgxBXwB/lYhgBezKbzuA 3oGQKQSBEOOEj9csWEHr+ze8BRB+xf9UyzOvXpulkOi4SwCZwdZnqAnThL5jYX8KD6eh Gn/vsz8fgC2zUp9itgtX9sN7LTcewC04f5jQ0jAqe/PPZpD8yTs6aLNPhw6tlPEcXQ0Z 6xH/iFzvTeRZA4Ff27BvZFE9UiSBNSBUQrOCUmJi6ls2IzsoITx5zbIrY3RmBp2JDqjl bNWg== MIME-Version: 1.0 X-Received: by 10.112.148.73 with SMTP id tq9mr6042731lbb.37.1421268526127; Wed, 14 Jan 2015 12:48:46 -0800 (PST) In-Reply-To: <87387dg8ee.fsf@handshake.de> References: <24d5878b-8f5f-48a5-8b47-1c4fbe6e5268@googlegroups.com> <87387dg8ee.fsf@handshake.de> Date: Wed, 14 Jan 2015 12:48:46 -0800 Subject: Re: Compiling multiple python scripts into an exe file From: Dan Stromberg To: dieter Content-Type: text/plain; charset=UTF-8 Cc: Python List X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 12 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1421268533 news.xs4all.nl 2972 [2001:888:2000:d::a6]:56284 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:83779 On Tue, Jan 13, 2015 at 10:53 PM, dieter wrote: > no nein 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.