This is a full Password Manager I created in Python. Built with a quality CLI for easily saving, deleting, editing, viewing and exporting your accounts.
- Accounts can have emails and usernames, phone numbers coming soon.
- Passwords are stored in a Json with AES-128 encryption with fernett which also provides HMAC auth.
- The encryption key is derived from a Master Password using PBKDF2-HMAC-SHA256 with 100,000 iterations and a random salt.
- Easily export all your accounts into a CSV
-
Create a virtual environment
python3 -m venv venv
-
Activate the virtual environment
-
On Windows:
venv\Scripts\activate
-
On macOS/Linux:
source venv/bin/activate
-
-
Install dependencies
pip install -r requirements.txt
-
Run your project Replace this with your project’s run command, for example:
python3 main.py