Prev: a newbie's question
Next: Are there in Python some static web site generating tools likewebgen, nanoc or webby in Ruby ?
From: python on 9 Mar 2010 09:27 We've decided to build a re-usable *general purpose* PY2EXE "runtime" that can be shared by a number of scripts vs. distributing a monolithic EXE for each of our scripts. A list of the Python 2.6.4 compatible modules/packages we decided to include (and exclude) in our "runtime" follows my signature. Any suggestions on additions or deletions appreciated. Thanks, Malcolm 3rd party modules/packages: - jsonpickle - wmi <--- forgot this one in my original post - win32api - winshell We've included all modules from the Python standard library EXCEPT the following: http://www.python.org/doc/2.6.4/modindex.html - aifc - audioop - bsddb - Carbon - dbhash - distutils - dumbdbm - netrc - plistlib - robotparser - ScrolledText - shelve - sunau - tabnanny - Tix - Tkinter - turtle - whichdb
From: Aahz on 20 Mar 2010 00:39
In article <mailman.491.1268144871.23598.python-list(a)python.org>, <python(a)bdurham.com> wrote: > >We've decided to build a re-usable *general purpose* PY2EXE "runtime" >that can be shared by a number of scripts vs. distributing a monolithic >EXE for each of our scripts. It's not clear what the purpose of this is. You can build several scripts against the same py2exe backend. -- Aahz (aahz(a)pythoncraft.com) <*> http://www.pythoncraft.com/ "Many customs in this life persist because they ease friction and promote productivity as a result of universal agreement, and whether they are precisely the optimal choices is much less important." --Henry Spencer |