Documentation for gnomekeyring Python lib

Is there any documentation for Python 'gnomekeyring' lib somewhere on the web?

+6
python gnome
source share
2 answers

There is a link for the C library that the Python package uses. Most function names are identical (except for the gnome_keyring_ prefix). The Bending Gnome Keyring with Python on the blog should also give you a good start.

And as the keyring package has already been mentioned: if I remember correctly, this package supports gnome-keyring as a backend, so you can look at the source code to find out how to use gnome-keyring.

+5
source share

Apparently not. But is this document documented, maybe an option?

http://pypi.python.org/pypi/keyring

If not, maybe you can figure out how to use gnomekeyring to read the source of keyring. :)

+2
source share

All Articles