keyring - Python-Keyring command-line utility
keyring [get|set|del] SERVICE USERNAME
Show the help message and exit.
Specify path to the keyring backend to use.
Specify name of the keyring backend to use.
List the available keyring backends and exit.
Create a configuration file disabling keyring and exit.
keyring provides a way to store, lookup and delete passwords in various backends supported by Python-Keyring.
Usage example:
$ keyring set service username
Password for 'username' in 'service':
$ keyring get service username
password
How the SERVICE and USERNAME parameters are handled depends on the backend, with the default Secret Service backend they are stored as item lookup attributes.
secret-tool(1)