[Twisted-Python] Making a persistent SSH connection for a GUI

I am not new to Python but am to Twisted. I am also no guru when it comes to complex OO in Python. I have a PythonCard app that's a dashboard-like app and have it opening child windows that open SSH connections to various servers. I see plenty of conch examples of "open, get and close" but I would like to keep the connection to the server persistent so avoid the necessary connection overhead each time I want to fetch info from a server from the parent window. Does anyone have an example of a persistent conch connection inside wxPython or similar GUI? I have scoured the web and come up empty handed though I found a few shreds that have part of the answer. I've tried to tweak the nonpersistent examples, but making my way through four layers of subclasses is a bit daunting. Any help much appreciated. Paul.

On 7/17/07, Paul_S_Johnson@mnb.uscourts.gov <Paul_S_Johnson@mnb.uscourts.gov> wrote:
Does anyone have an example of a persistent conch connection inside wxPython or similar GUI? I have scoured the web and come up empty handed though I found a few shreds that have part of the answer. I've tried to tweak the nonpersistent examples, but making my way through four layers of subclasses is a bit daunting.
Yeah, I'm working on that :) The class that you'll want to hold onto is SSHConnection, because that's the one that you'll open channels through. The others aren't important once you've used them to get an SSHConnection. -p -- Paul Swartz paulswartz at gmail dot com http://z3p.livejournal.com/ AIM: z3penguin

twisted-python-bounces@twistedmatrix.com wrote on 07/17/2007 11:40:16 AM:
Yeah, I'm working on that :) The class that you'll want to hold onto is SSHConnection, because that's the one that you'll open channels through. The others aren't important once you've used them to get an SSHConnection.
Is it a project you're actively working on? If so, any guess on a completion date? That piece of code is super important to what we're trying to accomplish, so I am trying to figure out my options.
participants (2)
-
Paul Swartz
-
Paul_S_Johnson@mnb.uscourts.gov