Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #50245

Re: the general development using Python

Path csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <rosuav@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.011
X-Spam-Evidence '*H*': 0.98; '*S*': 0.00; 'cpython': 0.05; 'interpreter': 0.05; 'startup': 0.05; 'subject:Python': 0.06; 'start-up': 0.07; 'inherited': 0.09; 'subject:using': 0.09; 'python': 0.11; 'project,': 0.12; 'stored': 0.12; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'nonetheless': 0.16; 'pyinstaller': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'mon,': 0.24; 'header:In-Reply-To:1': 0.27; 'bigger': 0.30; 'message-id:@mail.gmail.com': 0.30; 'faster,': 0.31; 'subject:development': 0.31; 'maybe': 0.34; 'subject:the': 0.34; 'problem': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'really': 0.36; 'to:addr:python-list': 0.38; 'files': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'ian': 0.60; 'solve': 0.60; 'high': 0.63; 'funny': 0.74; 'jul': 0.74; 'transfer': 0.82; 'story:': 0.84; 'demand.': 0.91; 'hundred': 0.95; '2013': 0.98
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 :content-type; bh=ZKk4T2Rw0m/qgWJlTGcmeuejNyDUxAx3CETAhssXRYU=; b=bla0G/AxMtWm7EOhR+dA3t1BKi7c8tazouecCPoNjPJnIqzJVsdDlHFRUCWZnzhRG2 zQ/XBIvN6xfctuLxibfolmOVMFDqGUnXD8jk/2n69foIrIL0tEzT8DLOvQCIRBOLb57q fchAe1TV5gTK8xNIKxYzqghV5SX0rOKgKZaGtutNJK6132qseDhG6IPd5fT/2G2tfsLX 0LAPMXrm1IHDz2MmaM/Q2+6Z0gnDamHptUg+eEt9zl8iFImSEWdLpZ8dMEbirEMM3YSD cEE0SwOOeXbw6GfzX1XIq6GoT33hXdWENNCr85p11Qpi0mSlOCpygvkKaJY0MLkhd26F n3+g==
MIME-Version 1.0
X-Received by 10.220.48.17 with SMTP id p17mr15966510vcf.97.1373378371853; Tue, 09 Jul 2013 06:59:31 -0700 (PDT)
In-Reply-To <CALwzidm6nhurs40sjmVrbqQcN2yZ9eEi8aWxuMR5J00ZvfK7FA@mail.gmail.com>
References <51f7f573-e4a6-4349-ae50-21de7780ed8c@googlegroups.com> <33fe3c46-9c2e-481a-8aa9-8411e1c32d02@googlegroups.com> <CALwzidm6nhurs40sjmVrbqQcN2yZ9eEi8aWxuMR5J00ZvfK7FA@mail.gmail.com>
Date Tue, 9 Jul 2013 23:59:31 +1000
Subject Re: the general development using Python
From Chris Angelico <rosuav@gmail.com>
To python-list@python.org
Content-Type text/plain; charset=ISO-8859-1
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <http://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 <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.4451.1373378375.3114.python-list@python.org> (permalink)
Lines 20
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1373378375 news.xs4all.nl 15910 [2001:888:2000:d::a6]:46899
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:50245

Show key headers only | View raw


On Tue, Jul 9, 2013 at 6:41 PM, Ian Kelly <ian.g.kelly@gmail.com> wrote:
> On Mon, Jul 8, 2013 at 10:46 PM, CM <cmpython@gmail.com> wrote:
>>> There are projects that "bundle" the CPython interpreter with your
>>> project, but this makes those files really big.
>>
>> Maybe 5-20 MB.  That's a lot bigger than a few hundred K, but it's not that important to keep size down, really.
>
> Funny story: at my workplace we solve the distribution problem by
> placing both the Python interpreter and applications on a network
> share.  I have inherited a program that nonetheless is stored on the
> network share as a pyInstaller bundle because it is (perceived to be)
> faster to transfer a single .exe over the network during start-up than
> all the individual files on demand.

It might actually be faster, if the startup cost of a transfer is high
- which it very often can be. But it would likely also be faster to
transfer a single .zip or .tar.gz for the same benefit; or, depending
on requirements, use 'git pull' or scp.

ChrisA

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

the general development using Python ajetrumpet@gmail.com - 2013-07-08 18:45 -0700
  Re: the general development using Python Joshua Landau <joshua.landau.ws@gmail.com> - 2013-07-09 02:59 +0100
  Re: the general development using Python Chris Angelico <rosuav@gmail.com> - 2013-07-09 13:07 +1000
  Re: the general development using Python Joel Goldstick <joel.goldstick@gmail.com> - 2013-07-08 22:13 -0400
  Re: the general development using Python CM <cmpython@gmail.com> - 2013-07-08 21:46 -0700
    Re: the general development using Python Chris Angelico <rosuav@gmail.com> - 2013-07-09 15:03 +1000
      Re: the general development using Python CM <cmpython@gmail.com> - 2013-07-09 16:29 -0700
    Re: the general development using Python Ian Kelly <ian.g.kelly@gmail.com> - 2013-07-09 02:41 -0600
    Re: the general development using Python Chris Angelico <rosuav@gmail.com> - 2013-07-09 23:59 +1000
    Re: the general development using Python Joshua Landau <joshua.landau.ws@gmail.com> - 2013-07-09 22:21 +0100
      Re: the general development using Python CM <cmpython@gmail.com> - 2013-07-09 16:38 -0700
  Re: the general development using Python Joshua Landau <joshua.landau.ws@gmail.com> - 2013-07-09 22:13 +0100
    Re: the general development using Python CM <cmpython@gmail.com> - 2013-07-09 16:35 -0700
      Re: the general development using Python Joshua Landau <joshua@landau.ws> - 2013-07-10 01:14 +0100
        Re: the general development using Python CM <cmpython@gmail.com> - 2013-07-09 19:16 -0700
          Re: the general development using Python Chris Angelico <rosuav@gmail.com> - 2013-07-10 12:53 +1000
          Re: the general development using Python Joshua Landau <joshua@landau.ws> - 2013-07-10 05:12 +0100
            Re: the general development using Python CM <cmpython@gmail.com> - 2013-07-09 21:49 -0700
              Re: the general development using Python Joshua Landau <joshua@landau.ws> - 2013-07-10 06:49 +0100
                Re: the general development using Python CM <cmpython@gmail.com> - 2013-07-10 16:18 -0700
                Re: the general development using Python Joshua Landau <joshua@landau.ws> - 2013-07-11 00:57 +0100
                Re: the general development using Python CM <cmpython@gmail.com> - 2013-07-11 11:37 -0700
              Re: the general development using Python Ian Kelly <ian.g.kelly@gmail.com> - 2013-07-10 16:10 -0600
  Re: the general development using Python Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2013-07-09 19:25 -0400

csiph-web