Here’s your updated README with a "Getting Started" section:
A simple password manager written in Python. I wrote this program from scratch to improve my Python skills.
- 🐍 Python
- 🖥️ Tkinter (GUI)
- 📊 Pandas
- 🔐 Cryptography
The default master password is masterpass. If you want to change it, follow these steps:
- Delete the
security.csvfile. - Start the program. It will prompt you in the terminal to enter a new password.
- Restart the program. A new
security.csvfile will be created with:- Your new master password
- A new encryption key
⚠ Caution: Changing the security file means previously saved passwords cannot be used anymore because the encryption key has changed.
Follow these steps to install and run the Password Manager on your system.
Ensure you have Python 3.x installed. You can check by running:
python --versionor
python3 --versionIf you don’t have Python installed, download it from here.
- Clone the Repository:
git clone https://github.com/Tavirutyutyu/PasswordManager.git
cd PasswordManager- Install Dependencies:
pip install -r requirements.txtRun the following command in the terminal:
python main.pyor (if python points to Python 2 on your system):
python3 main.py