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
tn.write('show run\n')
print tn.read_until('#')

-- 
http://mail.python.org/mailman/listinfo/python-list


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 event-driven paradigm for GUI programming,
EasyGUI will allow you to be productive with very basic tasks
immediately. Later, if you wish to make the transition to an
event-driven GUI paradigm, you can do so with a more powerful GUI
package such as anygui, PythonCard, Tkinter, wxPython, etc.

It works for me and is easy to modify to your needs.

-- 
http://mail.python.org/mailman/listinfo/python-list


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 lambda.
This is what EasyGUI provides. Using EasyGUI, all GUI interactions are
invoked by simple function calls.

 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 event-driven paradigm for GUI programming,
EasyGUI will allow you to be productive with very basic tasks
immediately. Later, if you wish to make the transition to an
event-driven GUI paradigm, you can do so with a more powerful GUI
package such as anygui, PythonCard, Tkinter, wxPython, etc.

-- 
http://mail.python.org/mailman/listinfo/python-list