| http://www.w3.org/ns/prov#value | - The indicated backendwill subsequently be used to store and retrieve passwords.here is an example demonstrating how to invoke ``set_keyring``:: # define a new keyring class which extends the KeyringBackend import keyring.backend class TestKeyring(keyring.backend.KeyringBackend): A test keyring which always outputs same password priority = 1 def set_password(self, servicename, username, passw
|