I am trying to create a simple program for storing passwords in Python, and it seems pretty simple, so I am wondering if I am using shelve incorrectly.
I have a main .py file:
import shelve passwords = shelve.open('./passwords_dict.py') choice = raw_input("Add password (a) or choose site (c)?") if choice[0] == 'a': site_key = raw_input("Add for which site? ").lower() userpass = raw_input("Add any info such as username, email, or passwords: ") passwords[site_key] = userpass else: site = raw_input("Which site? ").lower() if site in passwords: print "Info for " + site + ": " + passwords[site] else: print site, "doesn't seem to exist!" print "Done!" passwords.close()
And another passwords_dict.py file is just an empty dictionary.
But when I try to run the program, I get this error:
Traceback (most recent call last): File "passwords.py", line 3, in <module> passwords = shelve.open('passwords_dict.py') File "/usr/lib/python2.7/shelve.py", line 239, in open return DbfilenameShelf(filename, flag, protocol, writeback) File "/usr/lib/python2.7/shelve.py", line 223, in __init__ Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback) File "/usr/lib/python2.7/anydbm.py", line 82, in open raise error, "db type could not be determined" anydbm.error: db type could not be determined
When I try to use anydbm instead, I get this error:
Traceback (most recent call last): File "passwords.py", line 3, in <module> passwords = anydbm.open('passwords_dict.py') File "/usr/lib/python2.7/anydbm.py", line 82, in open raise error, "db type could not be determined" anydbm.error: db type could not be determined
And when I try to use dbm instead, I get this error:
Traceback (most recent call last): File "passwords.py", line 3, in <module> passwords = dbm.open('./passwords_dict.py') dbm.error: (2, 'No such file or directory')
What am I doing wrong? Is there another way to store the dictionary and still be able to retrieve the keys using user input (and not the entire dictionary, which, I suppose, is what makes it pickled)?