I have a config file like this:
user=cn=read-only-admin,dc=example,dc=com
password=somepassword
I want to save password to keyring. I can use keyrin password in python files with keyring library :
pass = keyring.get_password("system","administrator")
Is there any way to using keyring in config file? I'm using python 2.7 in my projects.