fix stuff

This commit is contained in:
morales-gregorio 2024-08-26 11:03:02 +02:00
parent 095f4474b0
commit 8a07dbab02
2 changed files with 18 additions and 12 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
pwdb.json pwdb.json
__pycache__

View file

@ -1,6 +1,8 @@
import json import json
import sys import sys
pwdb_path = 'pwdb.json'
def get_credentials(): def get_credentials():
username = input('Enter your username: ') username = input('Enter your username: ')
password = input('Enter your password: ') password = input('Enter your password: ')
@ -25,7 +27,7 @@ def write_pwdb(pwdb, pwdb_path):
pwdb_file = open(pwdb_path, 'wt') pwdb_file = open(pwdb_path, 'wt')
json.dump(pwdb, pwdb_file) json.dump(pwdb, pwdb_file)
pwdb_path = 'pwdb.json' def main():
pwdb = read_pwdb(pwdb_path) pwdb = read_pwdb(pwdb_path)
if len(sys.argv) > 1: if len(sys.argv) > 1:
@ -40,3 +42,6 @@ else:
print('Successfully authenticated!') print('Successfully authenticated!')
else: else:
print('Wrong password!') print('Wrong password!')
if __name__=='__main__':
main()