Python library for accessing a system's native keyring service. It can be used for secure password storage.
Questions tagged [python-keyring]
68 questions
0
votes
0 answers
Using keyring Library With ConfigParser
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 =…

jojo
- 137
- 1
- 3
- 12
0
votes
2 answers
Get attributes of GnomeKeyring key with Python 2.7 GTK3 on Ubuntu 14.04
I am using Linux Mint 17, based on Ubuntu 14.04
I have installed:
python-gnomekeyring 2.3.2
python-gi 3.12
python-gtk2 2.24
I want to use the GnomeKeyring. I save and read a key name an key password, but I annot access the attributes. When I try to…

oxidworks
- 1,563
- 1
- 14
- 37
0
votes
1 answer
Use gnomekeyring module with Python and GTK3 on Ubuntu 14.04
I am using Linux Mint 17, based on Ubuntu 14.04
I have installed:
python-gnomekeyring 2.3.2#
python-gi 3.12
python-gtk2 2.24
I have the following script:
#!/usr/bin/python
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import…

oxidworks
- 1,563
- 1
- 14
- 37
0
votes
0 answers
ipython import error for gnome-keyring, but no import errors in *standard* python console
I'm trying to import gnomekeyring in ipython, but it's giving me the following error:
in ()
----> 1 import gnomekeyring as gk
ImportError: could not import gobject (could not find _PyGObject_API object)
The…

user128063
- 203
- 1
- 6
0
votes
1 answer
pyinstaller: include keyring module?
i wrote a small python app to automatically login a user to specific service using the keyring module (for storing the password in the windows credential vault) and wxpython for a login gui.
The login tool for this service doesnt support the storage…

Sonic
- 117
- 1
- 10
0
votes
0 answers
Python keyring returns object data on Mac OSX
I'm trying to use keyring python module on Mac.
keyring.get_password
returns None, although I am pretty sure that the keyring and the username in it both exist. Any idea what could be the problem?
To give a more concrete example, this piece of…

Andre
- 637
- 6
- 16
0
votes
1 answer
Keyring using variables that read service and username in windows credentials
So the issue is we have an openLDAP server for authentication of our NAS drives in the office. Every time a computer is restarted the user has to input their password again to access the drives. Simply running a batch script to log into their drives…
0
votes
2 answers
how to retrieve list when stored in keyring in python
I am storing a list in python keyring. But when I retrieve it, it is converted into unicode
import keyring
c=[]
f=[]
c.append("ian")
c.append("ned")
c.append("stark")
print c
a="5555"
keyring.set_password(a,"internal",c)
d=…

imp
- 1,967
- 2
- 28
- 40