started this project because I wanted to build something useful in Python that I could actually use, not just small practice programs. Instead of beginning with something very complicated, I looked for tutorials and structured guides to understand how a real application is built. That’s when I found a password manager project on GeeksforGeeks. Their tutorial helped me grasp the basic structure of a password manager, including how to use Tkinter for a simple GUI, how to take user input, and how to store data in a file.
From the GeeksforGeeks project, I mainly learned how GUI applications work in Python using Tkinter. I picked up things like labels, input fields, and buttons, and how buttons trigger functions. I also learned file handling, such as opening a file, writing data to it, and reading data from it. Since a password manager needs to store account names and passwords somewhere, this taught me the basic workflow of saving and retrieving data from a text file.
and in future I am thinking to add delete and, find password by username or find username using password
also please suggest me something to add in this
Log in to leave a comment