Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Documentation for gnomekeyring Python lib

Tags:

python

gnome

Is there a documentation for Python 'gnomekeyring' lib somewhere in the Web?

like image 626
Alex Avatar asked Jan 16 '11 09:01

Alex


1 Answers

There is the reference for the C library which the Python package uses. Most function names are identical (except for the "gnome_keyring_" prefix). The Bending Gnome Keyring with Python blog series should give you a good start as well.

And as the keyring package was already mentioned: If I remember correctly, that package supports gnome-keyring as a backend, so you can look at its source code to find out how to use gnome-keyring.

like image 97
AndiDog Avatar answered Sep 20 '22 08:09

AndiDog