Can python-keyring reset all passwords?

Using python-keyring is it possible to reset all available passwords? I'm looking for iterate_passwords()

or similar, but it doesn't seem to exist.

According to this blog post , it is possible with the help gnomekeyring

, but I cannot find anything similar in python-keyring, which seems to be a much more common library.

+3


source to share


1 answer


According to the documentation, python-keyring

keyring backends only specify methods get_

, set_

and delete_

for single passwords, see for example Gnome backend .

There is an open issue on this which reads:



The existing API does not provide a way to enumerate keys.

+4


source







All Articles