File: demo.py

package info (click to toggle)
python-keyring 0.7.1-1%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 428 kB
  • sloc: python: 1,563; makefile: 29
file content (28 lines) | stat: -rw-r--r-- 669 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
# encoding: utf-8
"""
demo.py

Created by Kang Zhang on 2009-06-13.
"""

import keyring
import getpass

def main():
    """This script demos the python keyring lib api. To see the changes that 
    keyring lib has made on your machine, open your Keychain and search for 
    demo-service in your login keychain.
    """
    
    username = raw_input("Username for demo:\n")
    password = keyring.get_password("demo-service", username)
    
    print "Password fetched from the keyring: ", password

    password = getpass.getpass("Password:\n")
    keyring.set_password("demo-service", username, password)

if __name__ == '__main__':
    main()