ANN: pyxe
BruceKL WhoH
BruceWhoHKL at gawab.com
Thu Aug 19 21:53:19 EDT 2004
Gerson Kurz:
Can pyxe build a Python script with GUI(wxPython/tk) into a binary?
Can pyxe build binaries for Linux?
======= 2004-08-19 19:50:26 Gerson Kurz wrote: =======
>pyxe is a small executable that will run python scripts on a machine
>that doesn't have Python installed. Example: You have the following
>hello.py:
>
>def main():
> print "Hello, World"
>
>You can create a binary distribution using
>
>pyxe /build hello
>
>This will create a directory ./hello which contains all you need. Copy
>all files to a host system and run the app using
>
>pyxe hello
>
>That's it. Note that your app must define a
>
>def main():
>
>which is the main procedure to start from pyxe. There is one known
>restriction, sys.argv[] doesn't get properly setup in pyxe
>environment. You can fix this yourself:
>
>import sys
>try:
> import cfrompy
> sys.argv = cfrompy.GetSysArgv()
>except ImportError:
> assert sys.argv
>
>Easy, eh? Requirements
>
>- On the developer machine, you must have python23 installed.
>- On the target machine, no requirements.
>- Tested on Windows NT and Windows 2000. You are on your own with
>other systems (such as XP, 03 etc.)
>
>pyxe is free for any purpose whatsoever.
>
>Download:
>http://p-nand-q.com/python/pyxe.zip
>
>includes the full sourcecode and a sample app in Python which actually
>is the "SimpleHTTPServer" webserver ;) Enjoy
>
>Homepage = this mail in fancy tags:
>http://p-nand-q.com/python/pyxe.html
>
>--
>http://mail.python.org/mailman/listinfo/python-list
>.
= = = = = = = = = = = = = = = = = = = =
BruceKL WhoH
BruceWhoHKL at gawab.com
2004-08-20
More information about the Python-list
mailing list