From 775d083c299d8d041777747c64a20c98560c73e7 Mon Sep 17 00:00:00 2001 From: vijay Date: Wed, 8 Jul 2020 16:18:01 +0530 Subject: [PATCH] Updated the readme file as per latest changes --- Password Manager/README.md | 6 +++++- Password Manager/src/Modules/Password.py | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Password Manager/README.md b/Password Manager/README.md index 22c5f23..0e91a15 100644 --- a/Password Manager/README.md +++ b/Password Manager/README.md @@ -19,7 +19,11 @@ As the number of accounts created increases, it has become harder to collect and SS

-Run the `Password_manager.p` file present in the `src` folder. +**Prerequisites** : Python 3 and Cryptography module. + +Before running the application, you need to install the [cryptography](https://pypi.org/project/cryptography/) module. To do so, launch your terminal and type `pip install cryptography`. Once completed, you are ready to use the application. + +Run the `Password_manager.py` file present in the `src` folder. You can do that by just double clicking on the file if you have the python launcher installed. Else, `cd/` to the `src` folder and type `python Password_manager.py`. diff --git a/Password Manager/src/Modules/Password.py b/Password Manager/src/Modules/Password.py index 8605513..69a11ce 100644 --- a/Password Manager/src/Modules/Password.py +++ b/Password Manager/src/Modules/Password.py @@ -14,6 +14,8 @@ def password_function(): password = f.read() decrypted = fernet.decrypt(password) decrypted = decrypted.decode() + green("PASSWORD MANAGER") + cyan("-" * 25) while(True): entered_password = input("Enter your password \n> ") if(decrypted == entered_password):