Re: Creating single .exe file without py2exe and pyinstaller

2008-10-21 Thread oyster
you can try jungle ( http://www.suda-chen.biz/?page_id=21 ) also

 -- 已转发邮件 --
 From: MRAB [EMAIL PROTECTED]
 To: python-list@python.org
 Date: Mon, 20 Oct 2008 15:47:55 -0700 (PDT)
 Subject: Re: Creating single .exe file without py2exe and pyinstaller
 On Oct 20, 4:48 pm, Larry Bates [EMAIL PROTECTED] wrote:
  Tino Wildenhain wrote:
   Abah Joseph wrote:
   2) use a python to C(++) compiler and compile the result to .exe,
  works pretty well for simple applications:
  http://shed-skin.blogspot.com/
--
http://mail.python.org/mailman/listinfo/python-list


Re: Creating single .exe file without py2exe and pyinstaller

2008-10-20 Thread Larry Bates

Tino Wildenhain wrote:

Hi,

Abah Joseph wrote:
I have written a small application of about 40-45 lines which is about 
4KB, so I want to create a single .exe file from it, using py2exe it 
created unnecessary files, that just increase the size of the program 
and also less portable to me. What else can I use?


the unneccessary files you say, are what your 40-45 lines bring to
life.

1) just distribute the 40-45 lines - but this requires python
   installation on users end

2) use a python to C(++) compiler and compile the result to .exe,
   works pretty well for simple applications:

   http://shed-skin.blogspot.com/

Regards
Tino


3) Stop worrying about the size of the distribution.  In today's world 4Mb is 
trivial to download.


-Larry
--
http://mail.python.org/mailman/listinfo/python-list


Re: Creating single .exe file without py2exe and pyinstaller

2008-10-20 Thread MRAB
On Oct 20, 4:48 pm, Larry Bates [EMAIL PROTECTED] wrote:
 Tino Wildenhain wrote:
  Hi,

  Abah Joseph wrote:
  I have written a small application of about 40-45 lines which is about
  4KB, so I want to create a single .exe file from it, using py2exe it
  created unnecessary files, that just increase the size of the program
  and also less portable to me. What else can I use?

  the unneccessary files you say, are what your 40-45 lines bring to
  life.

  1) just distribute the 40-45 lines - but this requires python
     installation on users end

  2) use a python to C(++) compiler and compile the result to .exe,
     works pretty well for simple applications:

     http://shed-skin.blogspot.com/

  Regards
  Tino

 3) Stop worrying about the size of the distribution.  In today's world 4Mb is
 trivial to download.

Unless you're still on dialup...
--
http://mail.python.org/mailman/listinfo/python-list


Re: Creating single .exe file without py2exe and pyinstaller

2008-10-20 Thread Gabriel Genellina
En Sun, 19 Oct 2008 01:45:16 -0200, Abah Joseph [EMAIL PROTECTED]  
escribió:


I have written a small application of about 40-45 lines which is about  
4KB,

so I want to create a single .exe file from it, using py2exe it created
unnecessary files, that just increase the size of the program and also  
less

portable to me. What else can I use?
I am on windows XP.
Python 2.5


You may explore using the excludes and dll_excludes options if you are  
absolutely sure certain modules would never be used. Also you might use  
the ascii option if you never use any kind of encoding.


--
Gabriel Genellina

--
http://mail.python.org/mailman/listinfo/python-list


Re: Creating single .exe file without py2exe and pyinstaller

2008-10-19 Thread Tino Wildenhain

Hi,

Abah Joseph wrote:
I have written a small application of about 40-45 lines which is about 
4KB, so I want to create a single .exe file from it, using py2exe it 
created unnecessary files, that just increase the size of the program 
and also less portable to me. What else can I use?


the unneccessary files you say, are what your 40-45 lines bring to
life.

1) just distribute the 40-45 lines - but this requires python
   installation on users end

2) use a python to C(++) compiler and compile the result to .exe,
   works pretty well for simple applications:

   http://shed-skin.blogspot.com/

Regards
Tino


smime.p7s
Description: S/MIME Cryptographic Signature
--
http://mail.python.org/mailman/listinfo/python-list


Creating single .exe file without py2exe and pyinstaller

2008-10-18 Thread Abah Joseph
I have written a small application of about 40-45 lines which is about 4KB,
so I want to create a single .exe file from it, using py2exe it created
unnecessary files, that just increase the size of the program and also less
portable to me. What else can I use?
I am on windows XP.
Python 2.5
--
http://mail.python.org/mailman/listinfo/python-list