ConfigTools & Encription manager

This commit is contained in:
2026-02-19 00:55:27 +02:00
parent f8d45d156b
commit 0b1cd52df1
203 changed files with 18643 additions and 0 deletions

17
lib/keyring/__init__.py Normal file
View File

@@ -0,0 +1,17 @@
from .core import (
delete_password,
get_credential,
get_keyring,
get_password,
set_keyring,
set_password,
)
__all__ = (
'set_keyring',
'get_keyring',
'set_password',
'get_password',
'delete_password',
'get_credential',
)