I've spent a lot of time researching the keyring package trying to get a simple example to work. I'm using python 2.7 on a windows 7-x64 machine. I've installed the package and confirmed that the files are within my Lib/site-packages folder.
In this code snippet from the installation docs what is supposed to go in "system"?
import keyring
keyring.get_password("system", "username")
When I run the code i get the following error:
RuntimeError: No recommended backend was available. Install the keyrings.alt package if you want to use the non-recommended backends.
It seems like it's not recognizing Windows as the backend. I feel like I'm missing a simple step. Any help is appreciated including a simple code example of pulling generic credentials from Windows Credential Manager.