On Sunday 12 April 2009 15:07:11 Gabriel wrote: > I'm python newbie and i need to write gui for my school work in python. > I need to write it really quick, because i haven't much time .)
Try Tkinter, which is included by default with most Python installations. Writing simple programs is easy like: from Tkinter import * root=Tk() w=Label(root, text="Hello, world!") w.pack() root.mainloop() See the tutorial at http://www.pythonware.com/library/tkinter/introduction/hello-tkinter.htm Greetings, -- "The ability of the OSS process to collect and harness the collective IQ of thousands of individuals across the Internet is simply amazing." - Vinod Valloppillil http://www.catb.org/~esr/halloween/halloween4.html -- http://mail.python.org/mailman/listinfo/python-list