- Python >= 3.6
- All modules mentioned in Pipfile
You can install pipenv using pip install pipenv
. After this you can install all modules mentioned in Pipfile
using command pipenv install
.
Before you actual users can fetch passwords from Pasword Manager you will need to setup and add some passwords to this utility. You can do this setup by running
python setup.py
When running this for first time you will asked to enter your master password.
Master Password will be used for :
- Encrypting you other passwords that you will store in this utility.
- Authentication when you will be adding/deleting/modifying other passwords.
- Import/Export Passwords in JSON format.
Once master password is set you will get new screen as shown below
This python class can be used in your other python projects to get passwords stored by this utility. Follow the setps as below:
pipenv install password-manager
orpip install password-manager
from passwordmanager import PasswordManager
password_manager = PasswordManager()
password_manager.get_password(key)
- Import/Export to JSON feature
- Remote password fetch. If passwords are stored in different machine in comparison to its users
- 1.0.0 Initial Release