LPM is a local password manager used via the Command Line Interface (CLI).
Your data is written to a certain file after being encrypted. When you need this data, it's decrypted and printed for you! The various other commands such as
edit
,rm
, andsearch
have their own methods but if you really want to know how everything works under the hood, just read the code!
- Install PyInstaller 5.13.0.
- Clone the repository and
cd
into it.- Run
pyinstaller --onefile --distpath bin --name lpm src/main.py
(or use thetasks.json
method if you're using VSCode).- Add the path to the executable to your PATH variable.
- Run
lpm
and enjoy :)