Remmina - The GTK+ Remote Desktop Client  v1.4.33
Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistent user interface. Currently RDP, VNC, NX, XDMCP and SSH are supported.
Secret-Example

This type of plugins handles the safe storage of passwords so the user doesn't have to enter them again.

import remmina
class PluginSecret:
def __init__(self):
self.name = "Python Secret Plugin"
self.pref_label = "Preference Label"
self.type = "secret"
self.description = "A neat secret plugin"
self.version = "1.0"
# A password storage that stores passwords in memory (totally useless of course...).
self.keys = {}
def init(self):
return True
def is_service_available(self):
return True
def store_password(self, file, key, pwd):
self.keys[key] = pwd
def get_password(self, file, key):
return self.keys[key] if key in self.keys else ""
def delete_password(self, file, key):
self.keys[key] = None
mySecretPlugin = PluginSecret()
remmina.register_plugin(mySecretPlugin)