xi-keyring

simple and extensible alternative for gnome-keyring
git clone https://git.ce9e.org/xi-keyring.git

commit
5bec34d88270e3e0617daa78554e684909425717
parent
cfbf9e49c5b3f4d2926e36dfdadf72dd8951a01c
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2026-03-05 14:25
rm smoketest code

Diffstat

M xikeyring/keyring.py 7 -------
M xikeyring/prompt.py 5 -----

2 files changed, 0 insertions, 12 deletions


diff --git a/xikeyring/keyring.py b/xikeyring/keyring.py

@@ -226,10 +226,3 @@ class KeyringProxy:
  226   226         if self.keyring is None:
  227   227             self.keyring = Keyring(self.path)
  228   228         return getattr(self.keyring, attr)
  229    -1 
  230    -1 
  231    -1 if __name__ == '__main__':
  232    -1     k = KeyringProxy('keyring.db')
  233    -1     id = k.create_item({'foo': 'bar'}, b'password')
  234    -1     print(k.get_secret(id))
  235    -1     k.delete_item(id)

diff --git a/xikeyring/prompt.py b/xikeyring/prompt.py

@@ -74,8 +74,3 @@ class DummyPrompt:
   74    74 
   75    75     def confirm(self, desc):
   76    76         return True
   77    -1 
   78    -1 
   79    -1 if __name__ == '__main__':
   80    -1     prompt = PinentryPrompt()
   81    -1     print(prompt.get_password('please enter a password'))