A quick question

John Hunter jdhunter at nitace.bsd.uchicago.edu
Fri Sep 28 11:28:38 EDT 2001


   John> Say I was wondering if Python is able to compile into some
   John> sort of window aplication? 

Please post in plain text.  Your email came through as html, which
many readers of this group will have trouble reading.

When you say compile into a window application, do you mean a
graphical user inteface, windows, menus, that kind of thing?  If so,
yes: see tkinter, wxPython and others.

  http://www.python.org/topics/tkinter/
  http://wxpython.org/

Or do you mean a Microsoft windows application.  If so, yes, see
PyExe:

http://starship.python.net/crew/theller/py2exe/

   John> Also is there a way to make a program only using Python?

Again this depends on what you mean, but the answer is yes.  The
classic hello world is a program which uses only python

#!/usr/local/bin/python
print 'Hello World'

If you mean a stand alone Microsoft Windows program, see the links
above.

Good luck,
John Hunter



More information about the Python-list mailing list