Python app that is used to store password. This app currently only support adding, listing, and viewing passwords. The encrypted password is stored in a file in home directory in ~/.password_manager
. To delete the password just delete file in there.
To run this app you can execute file app.py
. First you need to initialize the folder by running app.py init
. To list all commands you can execute app.py --help
.
For detail about how this program works, you can read the pdf document here titled Passmanager.pdf.
You need typer and cryptography to run this app.