Re: py2exe questions

2006-11-04 Thread timmy
Doug Stell wrote: > I have 2 questions about py2exe or any similar utility. > > 1. Is it possible to create a single Windows executable that does not > blow out to a folder full of files and can be called from scripts > using command line arguments? py2exe can most certainly do this. > > 2. If th

Re: py2exe questions

2006-11-04 Thread Thomas Heller
Marc 'BlackJack' Rintsch schrieb: > In <[EMAIL PROTECTED]>, Jerry wrote: > >> Despite what everyone is saying though, I believe that any and all >> solutions will require that the byte-code be extracted to some >> directory before being run. > > It's not Python bytecode. The problem is native li

Re: py2exe questions

2006-11-04 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, Jerry wrote: > Despite what everyone is saying though, I believe that any and all > solutions will require that the byte-code be extracted to some > directory before being run. It's not Python bytecode. The problem is native libraries which are hard to run from memory wit

Re: py2exe questions

2006-11-04 Thread Fredrik Lundh
Jerry wrote: > Despite what everyone is saying though, I believe that any and all > solutions will require that the byte-code be extracted to some > directory before being run. the Python interpreter doesn't really care what you believe, though; it's perfectly capable of executing byte code that

Re: py2exe questions

2006-11-04 Thread Jerry
The McMillan (sp?) Python Installer has recently been resurrected as well, though now, it is just called PyInstaller and can be found at http://pyinstaller.python-hosting.com/ It allows you to create a one file distributable without the need to go back to Python2.3. Despite what everyone is sayin

Re: py2exe questions

2006-11-04 Thread robert
Thomas Heller wrote: > Larry Bates schrieb: >> Doug Stell wrote: >>> I have 2 questions about py2exe or any similar utility. >>> >>> 1. Is it possible to create a single Windows executable that does not >>> blow out to a folder full of files and can be called from scripts >>> using command line arg

Re: py2exe questions

2006-11-03 Thread Thomas Heller
Larry Bates schrieb: > Doug Stell wrote: >> I have 2 questions about py2exe or any similar utility. >> >> 1. Is it possible to create a single Windows executable that does not >> blow out to a folder full of files and can be called from scripts >> using command line arguments? >> >> 2. If the abo

Re: py2exe questions

2006-11-03 Thread Larry Bates
Doug Stell wrote: > I have 2 questions about py2exe or any similar utility. > > 1. Is it possible to create a single Windows executable that does not > blow out to a folder full of files and can be called from scripts > using command line arguments? > > 2. If the above can be done, it is possible

Re: py2exe questions

2006-11-03 Thread Grant Edwards
On 2006-11-03, Doug Stell <[EMAIL PROTECTED]> wrote: > I have 2 questions about py2exe or any similar utility. > > 1. Is it possible to create a single Windows executable that does not >blow out to a folder full of files and can be called from scripts >using command line arguments? The def

py2exe questions

2006-11-03 Thread Doug Stell
I have 2 questions about py2exe or any similar utility. 1. Is it possible to create a single Windows executable that does not blow out to a folder full of files and can be called from scripts using command line arguments? 2. If the above can be done, it is possible to hide parts of the Python sou