Re: newbie opinion: easygui rocks

2007-06-20 Thread Birdman
You are correct sir! -- http://mail.python.org/mailman/listinfo/python-list

Re: Help please using telnetlib module

2006-12-24 Thread Birdman
Simplest explanation is that you can't do a 'show run' from global configuration mode try something like #exit global configuration mode tn.write('end\n') print tn.read_until('#') #disable pause after 24 lines tn.write('term len 0\n') tn.read_until('#') #now show the entire running-config t

Re: Anyone using SPE editor on Ubuntu?

2006-01-05 Thread Birdman
I use SPE and my editor on my primary OS and I'd be very interested in using SPE with Ubuntu. -- http://mail.python.org/mailman/listinfo/python-list

Re: 'modal dialogs' with Tkinter

2005-02-22 Thread Birdman
You could try using: EasyGUIhttp://www.ferg.org/easygui/ EasyGUI is different from other GUIs in that EasyGUI is NOT event-driven. It allows you to program in a traditional linear fashion, and to put up dialogs for simple input and output when you need to. If you have not yet learned the even

Re: Stable GUI

2005-02-16 Thread Birdman
Check out EasyGui. It's easy to use/modify Tinker: http://www.ferg.org/easygui/ >From the web page: " Experienced Pythonistas need support for quick and dirty GUI features. New Python programmers need GUI capabilities that don't require any knowledge of Tkinter, frames, widgets, callbacks or lamb