Welcome folks today in this tutorial we will be building a password manager
system which will store user passwords in a database in python using tkinter. All the full source code of the application will be given below
Get Started
In order to get started you need to install the following libraries inside your python project using the pip
command as shown below
pip install tkinter
pip install sqlite3
pip install cryptography
After installing these libraries download the below code from github
and then follow the instructions given below
DOWNLOAD SOURCE CODE
You can also do this at command line using git
command in a very easy manner go to the empty directory wherever you will be creating this project and make sure you have git
installed on your machine. Just execute the following command
1 |
git clone https://github.com/reon150/Passwords-Storage |
And now move into that directory by this below command
1 |
cd passwords-storage |
And now run the application by running the main.py
file by the below command
python main.py
If you run this you will see the following figure which is shown below
As you can see there is a simple login
form which allows the users to login
if you are creating new account just enter some username and password and then click the enter
button you will be registered as a new user in the database
As you can see you can add a new password
inside your account very easily by the above figure