Re: GUI Programming

2009-05-28 Thread Michiel Overtoom
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 li

Re: GUI Programming

2009-04-14 Thread laplacia...@gmail.com
On Apr 12, 12:04 pm, Gabriel wrote: > r wrote: > > On Apr 12, 8:07 am, Gabriel wrote: > > >> Hello, > > >> I'm python newbie and i need to write gui for my school work in python. > >> I need to write it really quick, > > > [snip] > > > Tkinter is built-in, why not start there? > > > from Tkinter

Re: GUI Programming

2009-04-14 Thread David Cook
On 2009-04-12, 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 .) > So question is, which of gui toolkits should i pick and learn? I heard > PyGTK and Glade are best for quick gui programming?

Re: GUI Programming

2009-04-13 Thread Lawson English
Gabriel wrote: Hello, 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 .) So question is, which of gui toolkits should i pick and learn? I heard PyGTK and Glade are best for quick gui programming? Is it good for

Re: GUI Programming

2009-04-13 Thread norseman
Gabriel wrote: r wrote: On Apr 12, 8:07 am, Gabriel wrote: Hello, I'm python newbie and i need to write gui for my school work in python. I need to write it really quick, [snip] Tkinter is built-in, why not start there? from Tkinter import * root = Tk() root.mainloop() -- http:

Re: GUI Programming

2009-04-13 Thread Gabriel
Gabriel wrote: Hello, 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 .) So question is, which of gui toolkits should i pick and learn? I heard PyGTK and Glade are best for quick gui programming? Is it good for

Re: GUI Programming

2009-04-12 Thread Gabriel Genellina
En Sun, 12 Apr 2009 19:28:18 -0300, Python escribió: On 12 apr 2009, at 15:07, 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 .) I chose wxpython because of it's excellent crossplatform comp

Re: GUI Programming

2009-04-12 Thread Python
On 12 apr 2009, at 15:07, Gabriel wrote: Hello, 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 .) So question is, which of gui toolkits should i pick and learn? I heard PyGTK and Glade are best for quick

Re: GUI Programming

2009-04-12 Thread Emmanuel Surleau
Howdy, > 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 .) > So question is, which of gui toolkits should i pick and learn? I heard > PyGTK and Glade are best for quick gui programming? Is it good for > beginne

Re: GUI Programming

2009-04-12 Thread Gabriel
edexter wrote: On Apr 12, 8:07 am, Gabriel wrote: Hello, 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 .) So question is, which of gui toolkits should i pick and learn? I heard PyGTK and Glade are best fo

Re: GUI Programming

2009-04-12 Thread Ryniek90
I think you should get involved with Eagle Python GUI or Kiwi GUI Framework . Good luck. -- http://mail.python.org/mailman/listinfo/python-list

Re: GUI Programming

2009-04-12 Thread Steven D'Aprano
On Sun, 12 Apr 2009 15:07:11 +0200, Gabriel wrote: > Hello, > > 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 .) So > question is, which of gui toolkits should i pick and learn? I heard > PyGTK and Glade are

Re: GUI Programming

2009-04-12 Thread edexter
On Apr 12, 8:07 am, Gabriel wrote: > Hello, > > 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 .) > So question is, which of gui toolkits should i pick and learn? I heard > PyGTK and Glade are best for quick gu

Re: GUI Programming

2009-04-12 Thread r
On Apr 12, 11:04 am, Gabriel wrote: [snip] > > It seems ugly to me.. OK, i shall inform the BDFL of this "inadequacy". Good Luck! -- http://mail.python.org/mailman/listinfo/python-list

Re: GUI Programming

2009-04-12 Thread Gabriel
r wrote: On Apr 12, 8:07 am, Gabriel wrote: Hello, I'm python newbie and i need to write gui for my school work in python. I need to write it really quick, [snip] Tkinter is built-in, why not start there? from Tkinter import * root = Tk() root.mainloop() -- http://mail.python.o

Re: GUI Programming

2009-04-12 Thread r
On Apr 12, 8:07 am, Gabriel wrote: > Hello, > > I'm python newbie and i need to write gui for my school work in python. > I need to write it really quick, [snip] Tkinter is built-in, why not start there? from Tkinter import * root = Tk() root.mainloop() -- http://mail.python.org/mailman/lis

Re: GUI programming with python

2008-09-12 Thread David Boddie
On Saturday 13 September 2008 01:04, sturlamolden wrote: > On Sep 12, 8:33 pm, [EMAIL PROTECTED] (Al Dykes) wrote: > >> OK, what are my choices for an IDE/GUI development tool that runs on XP? [...] > Cpython with PyQt: BlackAdder People using this combination apparently prefer Eric, these day

Re: GUI programming with python

2008-09-12 Thread sturlamolden
On Sep 12, 8:33 pm, [EMAIL PROTECTED] (Al Dykes) wrote: > OK, what are my choices for an IDE/GUI development tool that runs on XP? That depends on the GUI toolkit you are using. My suggestion: CPython with wxPython: wxFormBuilder Cpython with PyQt: BlackAdder CPython with PyGTK: GLADE 3 Jytho

Re: GUI programming with python

2008-09-12 Thread Mike Driscoll
On Sep 12, 1:33 pm, [EMAIL PROTECTED] (Al Dykes) wrote: > In article <[EMAIL PROTECTED]>, > Alan Franzoni  <[EMAIL PROTECTED]> wrote: > > >zamil was kind enough to say: > > >[cut] > > >If your needs are very basic, you can stick with the tk module that comes > >with python. It's not really feature-

Re: GUI programming with python

2008-09-12 Thread Stef Mientki
Al Dykes wrote: In article <[EMAIL PROTECTED]>, Alan Franzoni <[EMAIL PROTECTED]> wrote: zamil was kind enough to say: [cut] If your needs are very basic, you can stick with the tk module that comes with python. It's not really feature-packed, but it's maintained and pretty cross-platform.

Re: GUI programming with python

2008-09-12 Thread Al Dykes
In article <[EMAIL PROTECTED]>, Alan Franzoni <[EMAIL PROTECTED]> wrote: >zamil was kind enough to say: > >[cut] > >If your needs are very basic, you can stick with the tk module that comes >with python. It's not really feature-packed, but it's maintained and pretty >cross-platform. OK, what are

Re: GUI programming with python

2008-08-28 Thread Bruno Desthuilliers
zamil a écrit : Hello Everyone It's my very first email to this group. i am a beginner programmer of python. it it possible to build Desktop application using python. Yes. Which IDE should i use for this purpose? I suspect you are confusing "IDE" with "GUI builder". FWIW, you don't *need*

Re: GUI programming with python

2008-08-27 Thread mobiledreamers
http://delicious.com/url/4adfb8d4a16eb4e2a9884298e0af1784 people are starting to save :) -- http://mail.python.org/mailman/listinfo/python-list

Re: GUI programming with python

2008-08-27 Thread rynt
On Aug 26, 10:49 am, John Fabiani <[EMAIL PROTECTED]> wrote: > Alan Franzoni wrote: > > zamil was kind enough to say: > > > [cut] > > > See the following link on the Python website. http://wiki.python.org/moin/GuiProgramming Google this list for GUI RC -- http://mail.python.org/mailman/listinf

Re: GUI programming with python

2008-08-26 Thread James Matthews
wxPython is a very rich toolkit it includes a nice GUI bulider and you can also try an IDE called Boa On Tue, Aug 26, 2008 at 10:49 AM, John Fabiani <[EMAIL PROTECTED]> wrote: > Alan Franzoni wrote: > > > zamil was kind enough to say: > > > > [cut] > > > > If your needs are very basic, you can st

Re: GUI programming with python

2008-08-26 Thread John Fabiani
Alan Franzoni wrote: > zamil was kind enough to say: > > [cut] > > If your needs are very basic, you can stick with the tk module that comes > with python. It's not really feature-packed, but it's maintained and > pretty cross-platform. > > Otherwise, you can pick any supported widget set you l

Re: GUI programming with python

2008-08-26 Thread Alan Franzoni
zamil was kind enough to say: [cut] If your needs are very basic, you can stick with the tk module that comes with python. It's not really feature-packed, but it's maintained and pretty cross-platform. Otherwise, you can pick any supported widget set you like and use the proper python bindings.

Re: GUI Programming by hand not code with Python Code

2008-07-09 Thread Nicola Musatti
On Jul 8, 10:09 pm, sturlamolden <[EMAIL PROTECTED]> wrote: [...] > I use wxFormBuilder with wxPython. Works like a charm. Design the GUI > graphically, export it like a wx XML resource (.xrc). All you nedd to > code in Python is the event handlers and the code to bind/hook the > events. > > http:/

Re: GUI Programming by hand not code with Python Code

2008-07-08 Thread sturlamolden
On 7 Jul, 04:33, [EMAIL PROTECTED] wrote: > Is their a program that lets you design a GUI by hand (like gambas) > not by code (like wxpython) but the commands are in python? > > A program similar to gambas or vb > > Gambas with python code instead of gambas code would be perfect. > > Thanks in adv

Re: GUI Programming by hand not code with Python Code

2008-07-07 Thread Sebastian "lunar" Wiesner
Jason Scheirer <[EMAIL PROTECTED]>: > On Jul 6, 7:33 pm, [EMAIL PROTECTED] wrote: >> Is their a program that lets you design a GUI by hand (like gambas) >> not by code (like wxpython) but the commands are in python? >> >> A program similar to gambas or vb >> >> Gambas with python code instead of g

Re: GUI Programming by hand not code with Python Code

2008-07-07 Thread Mike Driscoll
On Jul 6, 9:33 pm, [EMAIL PROTECTED] wrote: > Is their a program that lets you design a GUI by hand (like gambas) > not by code (like wxpython) but the commands are in python? > > A program similar to gambas or vb > > Gambas with python code instead of gambas code would be perfect. > > Thanks in ad

Re: GUI Programming by hand not code with Python Code

2008-07-06 Thread Victor Noagbodji
> Is their a program that lets you design a GUI by hand (like gambas) > not by code (like wxpython) but the commands are in python? > > A program similar to gambas or vb > > Gambas with python code instead of gambas code would be perfect. > > Thanks in advance Check out the Designer program that c

Re: GUI Programming by hand not code with Python Code

2008-07-06 Thread Jason Scheirer
On Jul 6, 7:33 pm, [EMAIL PROTECTED] wrote: > Is their a program that lets you design a GUI by hand (like gambas) > not by code (like wxpython) but the commands are in python? > > A program similar to gambas or vb > > Gambas with python code instead of gambas code would be perfect. > > Thanks in ad

Re: GUI programming, embedding, real time plots, etc.

2005-08-08 Thread Lou Pecora
In article <[EMAIL PROTECTED]>, Madhusudan Singh <[EMAIL PROTECTED]> wrote: > 1. In using matplotlib (my code essentially involved creating a plot and > show()'ing it inside a loop), the color of the plot changed. Is there a way > to tell matplotlib to not treat each new invocation as a new plot,

Re: GUI programming, embedding, real time plots, etc.

2005-08-05 Thread Madhusudan Singh
[EMAIL PROTECTED] wrote: > apt-get install python-pwm > this will get you python mega widgets > one of the dependencies that apt will take care of for you is the > python2.whatever-tk. > depending on which version of debian you are using. > i run sarge with python 2.3 Thanks for the help. I trie

Re: GUI programming, embedding, real time plots, etc.

2005-08-05 Thread nephish
apt-get install python-pwm this will get you python mega widgets one of the dependencies that apt will take care of for you is the python2.whatever-tk. depending on which version of debian you are using. i run sarge with python 2.3 -- http://mail.python.org/mailman/listinfo/python-list