Using Python under windows

Alex Martelli aleax at aleax.it
Thu Sep 6 10:27:56 EDT 2001


"RB" <bellox at atlantide.it> wrote in message
news:OcKl7.81553$vC1.1229141 at news1.tin.it...
> Hi everybody! I'm new in Pyton-Programming, And I havn't found two
> important thinks in the Tutorial:
>
> First: Is it possible to call and use the forms under windows and put
> in some controls?

Python offers you the choice of a lot of GUI toolkits, most
of which also work fine under Windows.  Tkinter is the most
widely used one, but others prefer wxPython, PyQt, or others.

The anygui project, anygui.sf.net, is working towards a tkit
that will sit on top of a wide variety of others, so you can
code a simple GUI just once, and then different users can use it
with different underlying GUI toolkits they may have installed.
It's in pre-alpha now, so it doesn't yet help you if you must
start programming GUI stuff very soon.


> Second: How I can make an exeguible file? I mean, how I can compile my
> program to use it Stand-Alone?

You'll first need a reasonable competence with Python (it's
not a beginner's job:-), but when you have it your choices are:
http://starship.python.net/crew/theller/py2exe/
http://www.mcmillan-inc.com/install1.html


Alex






More information about the Python-list mailing list