implement name-main trick
This commit is contained in:
parent
095f4474b0
commit
65a910ff90
11
auth.py
11
auth.py
|
@ -25,13 +25,16 @@ def write_pwdb(pwdb, pwdb_path):
|
|||
pwdb_file = open(pwdb_path, 'wt')
|
||||
json.dump(pwdb, pwdb_file)
|
||||
|
||||
pwdb_path = 'pwdb.json'
|
||||
pwdb = read_pwdb(pwdb_path)
|
||||
|
||||
if len(sys.argv) > 1:
|
||||
if __name__ == "__main__":
|
||||
pwdb_path = 'pwdb.json'
|
||||
pwdb = read_pwdb(pwdb_path)
|
||||
|
||||
|
||||
if len(sys.argv) > 1:
|
||||
pwdb = add_user(sys.argv[1], pwdb)
|
||||
write_pwdb(pwdb, pwdb_path)
|
||||
else:
|
||||
else:
|
||||
username, password = get_credentials()
|
||||
if username not in pwdb:
|
||||
print('Wrong username!')
|
||||
|
|
Loading…
Reference in a new issue